/frameworks/native/opengl/libs/GLES_trace/src/ |
gltrace_egl.cpp | 30 GLTraceContext *glContext = getGLTraceContext(); 51 glContext->traceGLMessage(&glmessage); 56 GLTraceContext *glContext = getGLTraceContext(); 71 glContext->traceGLMessage(&glmessage); 76 GLTraceContext *glContext = getGLTraceContext(); 78 glmessage.set_context_id(glContext->getId()); 81 if (glContext->getGlobalTraceState()->shouldCollectFbOnEglSwap()) { 83 fixup_addFBContents(glContext, &glmessage, FB0); 90 glContext->traceGLMessage(&glmessage);
|
gltrace_api.cpp | 35 GLTraceContext *glContext = getGLTraceContext(); 48 glContext->hooks->gl.glActiveTexture(texture); 55 fixupGLMessage(glContext, wallStartTime, wallEndTime, 58 glContext->traceGLMessage(&glmsg); 63 GLTraceContext *glContext = getGLTraceContext(); 82 glContext->hooks->gl.glAttachShader(program, shader); 89 fixupGLMessage(glContext, wallStartTime, wallEndTime, 92 glContext->traceGLMessage(&glmsg); 97 GLTraceContext *glContext = getGLTraceContext(); 122 glContext->hooks->gl.glBindAttribLocation(program, index, name) [all...] |
gltrace_fixup.cpp | 477 GLTraceContext *glContext = context; [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
SDL_macgl.c | 112 glContext = aglCreateContext(format, NULL); 113 if ( glContext == NULL ) { 120 noerr = aglSetDrawable(glContext, GetWindowPort(SDL_Window)); 122 noerr = aglSetDrawable(glContext, (AGLDrawable)SDL_Window); 139 if ( glContext != NULL ) { 141 aglSetDrawable(glContext, NULL); 142 aglDestroyContext(glContext); 143 glContext = NULL; 156 if( ! aglSetCurrentContext(glContext) ) { 165 aglSwapBuffers(glContext); [all...] |
SDL_lowvideo.h | 100 #define glContext (this->hidden->appleGLContext)
|
/external/skia/bench/ |
benchmain.cpp | 485 SkGLContextHelper* glContext = NULL; 491 glContext = gContextFactory.getGLContext(config.contextType); 619 if (NULL != glContext) { 620 glContext->swapBuffers(); 630 if (NULL != glContext) { 632 SK_GL(*glContext, Finish());
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorCanvasAgent.cpp | 200 ScriptObject InspectorCanvasAgent::wrapWebGLRenderingContextForInstrumentation(const ScriptObject& glContext) 203 InjectedScriptCanvasModule module = injectedScriptCanvasModule(&error, glContext); 206 return notifyRenderingContextWasWrapped(module.wrapWebGLContext(glContext));
|
InjectedScriptCanvasModule.cpp | 69 ScriptObject InjectedScriptCanvasModule::wrapWebGLContext(const ScriptObject& glContext) 71 return callWrapContextFunction("wrapWebGLContext", glContext);
|
InjectedScriptCanvasModuleSource.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8HTMLCanvasElementCustom.cpp | 119 ScriptObject glContext(scriptState, v8::Handle<v8::Object>::Cast(v8Result)); 120 ScriptObject wrapped = InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation(&imp->document(), glContext);
|
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGpuGL.h | 34 const GrGLContext& glContext() const { return fGLContext; }
|
GrGLShaderBuilder.cpp | 703 if (!attach_shader(fGpu->glContext(), programId, GR_GL_FRAGMENT_SHADER, fragShaderSrc)) { [all...] |
GrGpuGL.cpp | [all...] |
/external/skia/src/gpu/gl/ |
GrGpuGL.h | 34 const GrGLContext& glContext() const { return fGLContext; }
|
GrGLShaderBuilder.cpp | 703 if (!attach_shader(fGpu->glContext(), programId, GR_GL_FRAGMENT_SHADER, fragShaderSrc)) { [all...] |
GrGpuGL.cpp | [all...] |
/external/skia/tools/ |
PictureRenderer.cpp | 230 SkGLContextHelper* glContext = this->getGLContext(); 231 if (NULL == glContext) { 238 SK_GL(*glContext, Finish());
|
/external/qemu/distrib/sdl-1.2.15/src/video/macdsp/ |
SDL_dspvideo.c | [all...] |