aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max.kellermann@gmail.com>2018-06-08 19:02:05 +0200
committerMax Kellermann <max.kellermann@gmail.com>2018-06-10 23:58:13 +0200
commite3239779a1f11b0e9bdb5aa8f6c865bdfe63a5a6 (patch)
tree7df8a52e1d4aa42f3edeb187681de68669180a8f
parent7ee94d84823487a66bec90496fbf118cdaa9ae86 (diff)
guilib/MatrixGLES: remove unused array constructor
-rw-r--r--xbmc/guilib/MatrixGLES.h2
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();