HomeSort by relevance Sort by last modified time
    Searched defs:MakeCurrent (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/ui/gl/
gl_context_stub.cc 18 bool GLContextStub::MakeCurrent(GLSurface* surface) {
gl_context_wgl.cc 72 bool GLContextWGL::MakeCurrent(GLSurface* surface) {
78 TRACE_EVENT0("gpu", "GLContextWGL::MakeCurrent");
gl_context_android.cc 32 virtual bool MakeCurrent(GLSurface* surface) OVERRIDE;
57 bool GLNonOwnedContext::MakeCurrent(GLSurface* surface) {
gl_context_egl.cc 91 bool GLContextEGL::MakeCurrent(GLSurface* surface) {
97 TRACE_EVENT2("gpu", "GLContextEGL::MakeCurrent",
gl_context_glx.cc 95 bool GLContextGLX::MakeCurrent(GLSurface* surface) {
101 TRACE_EVENT0("gpu", "GLContextGLX::MakeCurrent");
gl_context_osmesa.cc 50 bool GLContextOSMesa::MakeCurrent(GLSurface* surface) {
gl_context_cgl.cc 139 bool GLContextCGL::MakeCurrent(GLSurface* surface) {
182 TRACE_EVENT0("gpu", "GLContextCGL::MakeCurrent");
gl_gl_api_implementation.cc 425 bool VirtualGLApi::MakeCurrent(GLContext* virtual_context, GLSurface* surface) {
429 // MakeCurrent 'lite' path that avoids potentially expensive MakeCurrent()
434 if (!real_context_->MakeCurrent(surface)) {
  /external/chromium_org/gpu/command_buffer/service/
gl_context_virtual.cc 37 if (!shared_context_->MakeCurrent(compatible_surface)) {
40 LOG(ERROR) << "Failed MakeCurrent(compatible_surface)";
56 bool GLContextVirtual::MakeCurrent(gfx::GLSurface* surface) {
in_process_command_buffer.cc 235 bool InProcessCommandBuffer::MakeCurrent() {
239 if (!context_lost_ && decoder_->MakeCurrent())
241 DLOG(ERROR) << "Context lost because MakeCurrent failed.";
251 if (!MakeCurrent())
404 if (!context_->MakeCurrent(surface_.get())) {
452 bool have_context = context_.get() && context_->MakeCurrent(surface_.get());
526 if (MakeCurrent() && gpu_scheduler_->HasMoreWork()) {
722 make_current_success = MakeCurrent();
gles2_cmd_decoder.cc 595 virtual bool MakeCurrent() OVERRIDE;
    [all...]
  /external/chromium_org/ui/surface/
accelerated_surface_mac.cc 168 bool AcceleratedSurface::MakeCurrent() {
171 return gl_context_->MakeCurrent(gl_surface_.get());
  /external/chromium_org/gpu/gles2_conform_support/egl/
display.cc 147 gl_context_->MakeCurrent(gl_surface_.get());
260 bool Display::MakeCurrent(EGLSurface draw, EGLSurface read, EGLContext ctx) {
  /external/chromium_org/content/common/gpu/
image_transport_surface.cc 156 bool ImageTransportHelper::MakeCurrent() {
160 return decoder->MakeCurrent();
gpu_command_buffer_stub.cc 233 if (!MakeCurrent())
310 if (decoder_.get() && !MakeCurrent())
392 bool GpuCommandBufferStub::MakeCurrent() {
393 if (decoder_->MakeCurrent())
395 DLOG(ERROR) << "Context lost because MakeCurrent failed.";
432 have_context = decoder_->MakeCurrent();
545 if (!context->MakeCurrent(surface_.get())) {
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 213 ASSERT_TRUE(context_->MakeCurrent(surface_.get()));
251 MakeCurrent();
272 void GLManager::MakeCurrent() {
282 MakeCurrent();
291 decoder_->MakeCurrent();
302 decoder_->MakeCurrent();
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
dri_util.h 104 GLboolean (*MakeCurrent)(__DRIcontext *driContextPriv,
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.h 104 GLboolean (*MakeCurrent)(__DRIcontext *driContextPriv,
  /external/chromium_org/android_webview/browser/
scoped_app_gl_state_restore.cc 28 void MakeCurrent() { context->MakeCurrent(surface.get()); }
44 g_app_context_surface.Get().MakeCurrent();
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglapi.h 145 MakeCurrent_t MakeCurrent;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
glxapi.h 74 Bool (*MakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
  /external/mesa3d/src/egl/main/
eglapi.h 145 MakeCurrent_t MakeCurrent;
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.h 74 Bool (*MakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
  /external/deqp/modules/egl/
teglGLES2SharingThreadedTests.cpp 683 class MakeCurrent : public tcu::ThreadUtil::Operation
686 MakeCurrent (EGLThread& thread, EGLDisplay display, SharedPtr<Surface> surface, SharedPtr<GLES2Context> context);
696 MakeCurrent::MakeCurrent (EGLThread& thread, EGLDisplay display, SharedPtr<Surface> surface, SharedPtr<GLES2Context> context)
697 : tcu::ThreadUtil::Operation ("MakeCurrent")
724 void MakeCurrent::exec (tcu::ThreadUtil::Thread& t)
    [all...]

Completed in 816 milliseconds