Searched refs:mSurface (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/third_party/angle/samples/angle/sample_util/ |
D | SampleApplication.cpp | 18 : mSurface(EGL_NO_SURFACE), in SampleApplication() 56 eglSwapBuffers(mWindow->getDisplay(), mSurface); in swap() 71 return mSurface; in getSurface() 178 …mSurface = eglCreateWindowSurface(mWindow->getDisplay(), mConfig, mWindow->getNativeWindow(), surf… in initializeGL() 179 if (mSurface == EGL_NO_SURFACE) in initializeGL() 182 mSurface = eglCreateWindowSurface(mWindow->getDisplay(), mConfig, NULL, NULL); in initializeGL() 203 eglMakeCurrent(mWindow->getDisplay(), mSurface, mSurface, mContext); in initializeGL() 218 eglDestroySurface(mWindow->getDisplay(), mSurface); in destroyGL() 219 mSurface = 0; in destroyGL()
|
D | SampleApplication.h | 57 EGLSurface mSurface; variable
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/common/ |
D | SurfaceWrapper.java | 15 private final Surface mSurface; field in SurfaceWrapper 18 mSurface = surface; in SurfaceWrapper() 22 return mSurface; in getSurface() 33 mSurface.writeToParcel(out, 0); in writeToParcel()
|
/external/chromium_org/third_party/angle/tests/angle_tests/ |
D | ANGLETest.cpp | 41 eglSwapBuffers(mDisplay, mSurface); in swapBuffers() 281 mSurface = eglCreateWindowSurface(mDisplay, mConfig, mNativeWindow, NULL); in createEGLContext() 282 if(mSurface == EGL_NO_SURFACE) in createEGLContext() 285 mSurface = eglCreateWindowSurface(mDisplay, mConfig, NULL, NULL); in createEGLContext() 306 eglMakeCurrent(mDisplay, mSurface, mSurface, mContext); in createEGLContext() 318 eglDestroySurface(mDisplay, mSurface); in destroyEGLContext()
|
D | ANGLETest.h | 100 EGLSurface mSurface; variable
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/ |
D | Image9.cpp | 28 mSurface = NULL; in Image9() 37 SafeRelease(mSurface); in ~Image9() 152 SafeRelease(mSurface); in redefine() 163 if(mSurface) in createSurface() 216 mSurface = newSurface; in createSurface() 227 if (mSurface) in lock() 229 result = mSurface->LockRect(lockedRect, rect, 0); in lock() 240 if (mSurface) in unlock() 242 HRESULT result = mSurface->UnlockRect(); in unlock() 261 return (mSurface || gl_d3d9::RequiresTextureDataInitialization(mInternalFormat)) && mDirty; in isDirty() [all …]
|
D | Image9.h | 76 IDirect3DSurface9 *mSurface; variable
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
D | Texture.cpp | 461 mSurface = NULL; in Texture2D() 474 if (mSurface) in ~Texture2D() 476 mSurface->setBoundTexture(NULL); in ~Texture2D() 477 mSurface = NULL; in ~Texture2D() 593 mSurface = surface; in bindTexImage() 594 mSurface->setBoundTexture(this); in bindTexImage() 599 if (mSurface) in releaseTexImage() 601 mSurface->setBoundTexture(NULL); in releaseTexImage() 602 mSurface = NULL; in releaseTexImage()
|
D | Texture.h | 233 egl::Surface *mSurface; variable
|