Skip to content

Commit

Permalink
Fixed a compilation issue where the typedef for GLsizei does not matc…
Browse files Browse the repository at this point in the history
…h the OpenGL header type (microsoft#979)

Fix: microsoft#978
  • Loading branch information
pittmab authored and Raj Seshasankaran committed Sep 8, 2016
1 parent 85e5698 commit b393e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/CoreVideo/CVOpenGLESTexture.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ typedef unsigned int GLuint;
typedef signed int GLint;
typedef char GLchar;
typedef float GLfloat;
typedef size_t GLsizei;
typedef int GLsizei;

typedef CVImageBufferRef CVOpenGLESTextureRef;

Expand Down

0 comments on commit b393e2a

Please sign in to comment.