Lines Matching refs:eglSurface
426 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); in DestroySurface() local
428 if(!validateSurface(display, eglSurface)) in DestroySurface()
449 egl::Surface *eglSurface = (egl::Surface*)surface; in QuerySurface() local
451 if(!validateSurface(display, eglSurface)) in QuerySurface()
470 *value = eglSurface->getConfigID(); in QuerySurface()
473 *value = eglSurface->getHeight(); in QuerySurface()
479 …if(eglSurface->isPBufferSurface()) // For a window or pixmap surface, the contents of *value are… in QuerySurface()
481 *value = eglSurface->getLargestPBuffer(); in QuerySurface()
485 …if(eglSurface->isPBufferSurface()) // For a window or pixmap surface, the contents of *value are… in QuerySurface()
491 …if(eglSurface->isPBufferSurface()) // For a window or pixmap surface, the contents of *value are… in QuerySurface()
493 *value = eglSurface->getMipmapLevel(); in QuerySurface()
497 *value = eglSurface->getMultisampleResolve(); in QuerySurface()
500 *value = eglSurface->getPixelAspectRatio(); in QuerySurface()
503 *value = eglSurface->getRenderBuffer(); in QuerySurface()
506 *value = eglSurface->getSwapBehavior(); in QuerySurface()
509 …if(eglSurface->isPBufferSurface()) // For a window or pixmap surface, the contents of *value are… in QuerySurface()
511 *value = eglSurface->getTextureFormat(); in QuerySurface()
515 …if(eglSurface->isPBufferSurface()) // For a window or pixmap surface, the contents of *value are… in QuerySurface()
517 *value = eglSurface->getTextureTarget(); in QuerySurface()
524 *value = eglSurface->getWidth(); in QuerySurface()
619 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); in SurfaceAttrib() local
621 if(!validateSurface(display, eglSurface)) in SurfaceAttrib()
629 eglSurface->setMipmapLevel(value); in SurfaceAttrib()
637 if(!(eglSurface->getSurfaceType() & EGL_MULTISAMPLE_RESOLVE_BOX_BIT)) in SurfaceAttrib()
645 eglSurface->setMultisampleResolve(value); in SurfaceAttrib()
653 if(!(eglSurface->getSurfaceType() & EGL_SWAP_BEHAVIOR_PRESERVED_BIT)) in SurfaceAttrib()
661 eglSurface->setSwapBehavior(value); in SurfaceAttrib()
675 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); in BindTexImage() local
677 if(!validateSurface(display, eglSurface)) in BindTexImage()
687 if(surface == EGL_NO_SURFACE || eglSurface->isWindowSurface()) in BindTexImage()
692 if(eglSurface->getBoundTexture()) in BindTexImage()
697 if(eglSurface->getTextureFormat() == EGL_NO_TEXTURE) in BindTexImage()
706 context->bindTexImage(eglSurface); in BindTexImage()
717 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); in ReleaseTexImage() local
719 if(!validateSurface(display, eglSurface)) in ReleaseTexImage()
729 if(surface == EGL_NO_SURFACE || eglSurface->isWindowSurface()) in ReleaseTexImage()
734 if(eglSurface->getTextureFormat() == EGL_NO_TEXTURE) in ReleaseTexImage()
739 egl::Texture *texture = eglSurface->getBoundTexture(); in ReleaseTexImage()
1099 egl::Surface *eglSurface = (egl::Surface*)surface; in SwapBuffers() local
1101 if(!validateSurface(display, eglSurface)) in SwapBuffers()
1111 eglSurface->swap(); in SwapBuffers()
1121 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); in CopyBuffers() local
1123 if(!validateSurface(display, eglSurface)) in CopyBuffers()