OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s_gles_lib
(Results
1 - 2
of
2
) sorted by null
/sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.cpp
23
static osUtils::dynLibrary *
s_gles_lib
= NULL;
variable
37
s_gles_lib
= osUtils::dynLibrary::open(libName);
38
if (!
s_gles_lib
) return false;
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")
[
all
...]
/device/generic/goldfish/opengl/system/egl/
eglDisplay.cpp
38
static void *
s_gles_lib
= NULL;
variable
47
if (
s_gles_lib
) {
48
dlclose(
s_gles_lib
);
90
&
s_gles_lib
);
94
&
s_gles_lib
);
Completed in 197 milliseconds