Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Unified Diff: ppapi/c/dev/ppb_opengles_dev.h

Issue 6505002: Pepper GLES fixes to support 3D in NaCl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppb_opengles_dev.h
diff --git a/ppapi/c/dev/ppb_opengles_dev.h b/ppapi/c/dev/ppb_opengles_dev.h
index a4caa8426256efd8247ef70aa5415347cb7f313d..f4fa5b2fb110e50cebecf73e9129d9568b124a00 100644
--- a/ppapi/c/dev/ppb_opengles_dev.h
+++ b/ppapi/c/dev/ppb_opengles_dev.h
@@ -9,6 +9,7 @@
#define PPAPI_C_DEV_PPB_OPENGLES_DEV_H_
#include "ppapi/c/pp_resource.h"
+#include "ppapi/c/pp_stdint.h"
#ifndef __gl2_h_
David Springer 2011/02/11 22:27:40 Can someone please explain why we are shadowing "s
typedef unsigned int GLenum;
@@ -23,9 +24,9 @@ typedef unsigned int GLbitfield;
typedef short GLshort;
typedef float GLfloat;
typedef float GLclampf;
-typedef signed char GLbyte;
-typedef unsigned char GLubyte;
-typedef int GLfixed;
+typedef int8_t GLbyte;
+typedef uint8_t GLubyte;
+typedef int32_t GLfixed;
typedef unsigned short GLushort;
typedef int GLclampx;
#endif // __gl2_h_
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698