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
/development/tools/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.cpp
23
static osUtils::dynLibrary *
s_gles_lib
= NULL;
variable
43
s_gles_lib
= osUtils::dynLibrary::open(libName);
44
if (!
s_gles_lib
) return false;
46
s_gl.glAlphaFunc = (glAlphaFunc_t)
s_gles_lib
->findSymbol("glAlphaFunc");
47
s_gl.glClearColor = (glClearColor_t)
s_gles_lib
->findSymbol("glClearColor");
48
s_gl.glClearDepthf = (glClearDepthf_t)
s_gles_lib
->findSymbol("glClearDepthf");
49
s_gl.glClipPlanef = (glClipPlanef_t)
s_gles_lib
->findSymbol("glClipPlanef");
50
s_gl.glColor4f = (glColor4f_t)
s_gles_lib
->findSymbol("glColor4f");
51
s_gl.glDepthRangef = (glDepthRangef_t)
s_gles_lib
->findSymbol("glDepthRangef");
52
s_gl.glFogf = (glFogf_t)
s_gles_lib
->findSymbol("glFogf")
[
all
...]
/development/tools/emulator/opengl/system/egl/
eglDisplay.cpp
37
static void *
s_gles_lib
= NULL;
variable
46
if (
s_gles_lib
) {
47
dlclose(
s_gles_lib
);
88
&
s_gles_lib
);
Completed in 75 milliseconds