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
23c8169f
Commit
23c8169f
authored
Aug 12, 2013
by
Geoff Lang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for GL_NUM_EXTENSIONS.
TRAC #23704 Signed-off-by: Jamie Madill Signed-off-by: Shannon Woods Author: Geoff Lang
parent
56702e6d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
version.h
src/common/version.h
+1
-1
Context.cpp
src/libGLESv2/Context.cpp
+4
-0
No files found.
src/common/version.h
View file @
23c8169f
#define MAJOR_VERSION 2
#define MAJOR_VERSION 2
#define MINOR_VERSION 0
#define MINOR_VERSION 0
#define BUILD_VERSION 0
#define BUILD_VERSION 0
#define BUILD_REVISION 200
5
#define BUILD_REVISION 200
6
#define STRINGIFY(x) #x
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
src/libGLESv2/Context.cpp
View file @
23c8169f
...
@@ -1889,6 +1889,9 @@ bool Context::getIntegerv(GLenum pname, GLint *params)
...
@@ -1889,6 +1889,9 @@ bool Context::getIntegerv(GLenum pname, GLint *params)
case
GL_PIXEL_UNPACK_BUFFER_BINDING
:
case
GL_PIXEL_UNPACK_BUFFER_BINDING
:
*
params
=
mState
.
pixelUnpackBuffer
.
id
();
*
params
=
mState
.
pixelUnpackBuffer
.
id
();
break
;
break
;
case
GL_NUM_EXTENSIONS
:
*
params
=
static_cast
<
GLint
>
(
getNumExtensions
());
break
;
default
:
default
:
return
false
;
return
false
;
}
}
...
@@ -2142,6 +2145,7 @@ bool Context::getQueryParameterInfo(GLenum pname, GLenum *type, unsigned int *nu
...
@@ -2142,6 +2145,7 @@ bool Context::getQueryParameterInfo(GLenum pname, GLenum *type, unsigned int *nu
case
GL_VERTEX_ARRAY_BINDING
:
case
GL_VERTEX_ARRAY_BINDING
:
case
GL_MAX_VERTEX_UNIFORM_COMPONENTS
:
case
GL_MAX_VERTEX_UNIFORM_COMPONENTS
:
case
GL_MAX_FRAGMENT_UNIFORM_COMPONENTS
:
case
GL_MAX_FRAGMENT_UNIFORM_COMPONENTS
:
case
GL_NUM_EXTENSIONS
:
{
{
*
type
=
GL_INT
;
*
type
=
GL_INT
;
*
numParams
=
1
;
*
numParams
=
1
;
...
...
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