OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:s_gl
(Results
1 - 3
of
3
) sorted by null
/sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.cpp
21
GLDispatch
s_gl
;
variable
40
s_gl
.glAlphaFunc = (glAlphaFunc_t) s_gles_lib->findSymbol("glAlphaFunc");
41
s_gl
.glClearColor = (glClearColor_t) s_gles_lib->findSymbol("glClearColor");
42
s_gl
.glClearDepthf = (glClearDepthf_t) s_gles_lib->findSymbol("glClearDepthf");
43
s_gl
.glClipPlanef = (glClipPlanef_t) s_gles_lib->findSymbol("glClipPlanef");
44
s_gl
.glColor4f = (glColor4f_t) s_gles_lib->findSymbol("glColor4f");
45
s_gl
.glDepthRangef = (glDepthRangef_t) s_gles_lib->findSymbol("glDepthRangef");
46
s_gl
.glFogf = (glFogf_t) s_gles_lib->findSymbol("glFogf");
47
s_gl
.glFogfv = (glFogfv_t) s_gles_lib->findSymbol("glFogfv");
48
s_gl
.glFrustumf = (glFrustumf_t) s_gles_lib->findSymbol("glFrustumf")
[
all
...]
/device/generic/goldfish/opengl/system/GLESv1/
gl.cpp
36
static EGLClient_glesInterface *
s_gl
= NULL;
variable
142
if (!
s_gl
) {
143
s_gl
= new EGLClient_glesInterface();
144
s_gl
->getProcAddress = getProcAddress;
145
s_gl
->finish = finish;
146
s_gl
->init = init;
149
return
s_gl
;
/device/generic/goldfish/opengl/system/GLESv2/
gl2.cpp
36
static EGLClient_glesInterface *
s_gl
= NULL;
variable
140
if (!
s_gl
) {
141
s_gl
= new EGLClient_glesInterface();
142
s_gl
->getProcAddress = getProcAddress;
143
s_gl
->finish = finish;
144
s_gl
->init = init;
147
return
s_gl
;
Completed in 339 milliseconds