diff options
author | Max Kellermann <max.kellermann@gmail.com> | 2018-06-08 19:02:05 +0200 |
---|---|---|
committer | Max Kellermann <max.kellermann@gmail.com> | 2018-06-10 23:58:13 +0200 |
commit | e3239779a1f11b0e9bdb5aa8f6c865bdfe63a5a6 (patch) | |
tree | 7df8a52e1d4aa42f3edeb187681de68669180a8f | |
parent | 7ee94d84823487a66bec90496fbf118cdaa9ae86 (diff) |
guilib/MatrixGLES: remove unused array constructor
-rw-r--r-- | xbmc/guilib/MatrixGLES.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xbmc/guilib/MatrixGLES.h b/xbmc/guilib/MatrixGLES.h index 6358491add..b2e821cc4e 100644 --- a/xbmc/guilib/MatrixGLES.h +++ b/xbmc/guilib/MatrixGLES.h @@ -21,14 +21,12 @@ #include "system_gl.h" -#include <cstring> #include <stack> class CMatrixGL { public: CMatrixGL() = default; - explicit CMatrixGL(const float matrix[16]) { memcpy(m_pMatrix, matrix, sizeof(m_pMatrix)); } operator const float*() const { return m_pMatrix; } void LoadIdentity(); |