Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
angle
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
angle
Commits
43911ec8
Commit
43911ec8
authored
Nov 12, 2011
by
daniel@transgaming.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new function prototypes to gl2ext.h
Trac #18608 Signed-off-by: Nicolas Capens git-svn-id:
https://angleproject.googlecode.com/svn/trunk@877
736b8ea6-26fd-11df-bfd4-992fa37f6226
parent
888df06d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
gl2ext.h
include/GLES2/gl2ext.h
+11
-1
version.h
src/common/version.h
+1
-1
No files found.
include/GLES2/gl2ext.h
View file @
43911ec8
...
...
@@ -983,13 +983,23 @@ typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GL
#define GL_EXT_robustness 1
#ifdef GL_GLEXT_PROTOTYPES
GL_APICALL
GLenum
GL_APIENTRY
glGetGraphicsResetStatusEXT
(
void
);
#endif
GL_APICALL
void
GL_APIENTRY
glReadnPixelsEXT
(
GLint
x
,
GLint
y
,
GLsizei
width
,
GLsizei
height
,
GLenum
format
,
GLenum
type
,
GLsizei
bufSize
,
GLvoid
*
data
);
GL_APICALL
void
GL_APIENTRY
glGetnUniformfvEXT
(
GLuint
program
,
GLint
location
,
GLsizei
bufSize
,
GLfloat
*
params
);
GL_APICALL
void
GL_APIENTRY
glGetnUniformivEXT
(
GLuint
program
,
GLint
location
,
GLsizei
bufSize
,
GLint
*
params
);
#endif
/* GL_GLEXT_PROTOTYPES */
typedef
GLenum
(
GL_APIENTRYP
PFNGLGETGRAPHICSRESETSTATUSEXTPROC
)
(
void
);
typedef
void
(
GL_APIENTRYP
PFNGLREADNPIXELSEXTPROC
)
(
GLint
x
,
GLint
y
,
GLsizei
width
,
GLsizei
height
,
GLenum
format
,
GLenum
type
,
GLsizei
bufSize
,
GLvoid
*
data
);
typedef
void
(
GL_APIENTRYP
PFNGLGETNUNIFORMFVEXTPROC
)
(
GLuint
program
,
GLint
location
,
GLsizei
bufSize
,
GLfloat
*
params
);
typedef
void
(
GL_APIENTRYP
PFNGLGETNUNIFORMIVEXTPROC
)
(
GLuint
program
,
GLint
location
,
GLsizei
bufSize
,
GLint
*
params
);
#endif
/* GL_EXT_texture_storage */
#ifndef GL_EXT_texture_storage
#define GL_EXT_texture_storage 1
#ifdef GL_GLEXT_PROTOTYPES
GL_APICALL
void
GL_APIENTRY
TexStorage2DEXT
(
GLenum
target
,
GLsizei
levels
,
GLenum
internalformat
,
GLsizei
width
,
GLsizei
height
);
#endif
/* GL_GLEXT_PROTOTYPES */
typedef
void
(
GL_APIENTRYP
PFNGLTEXSTORAGE2DEXT
)
(
GLenum
target
,
GLsizei
levels
,
GLenum
internalformat
,
GLsizei
width
,
GLsizei
height
);
#endif
/*------------------------------------------------------------------------*
...
...
src/common/version.h
View file @
43911ec8
#define MAJOR_VERSION 0
#define MINOR_VERSION 0
#define BUILD_VERSION 0
#define BUILD_REVISION 87
6
#define BUILD_REVISION 87
7
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment