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

  /external/skia/tools/viewer/sk_app/android/
GLWindowContext_android.cpp 83 EGLConfig surfaceConfig;
84 SkAssertResult(eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs));
92 fDisplay, surfaceConfig, nullptr, kEGLContextAttribsForOpenGLES);
113 fSurface = eglCreateWindowSurface(fDisplay, surfaceConfig, fNativeWindow, windowAttribs);
116 fSurface = eglCreateWindowSurface(fDisplay, surfaceConfig, fNativeWindow, nullptr);
129 eglGetConfigAttrib(fDisplay, surfaceConfig, EGL_STENCIL_SIZE, &fStencilBits);
130 eglGetConfigAttrib(fDisplay, surfaceConfig, EGL_SAMPLES, &fSampleCount);
  /external/skia/tools/gpu/gl/angle/
GLTestContext_angle.cpp 130 EGLConfig surfaceConfig;
131 eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs);
139 fContext = eglCreateContext(fDisplay, surfaceConfig, eglShareContext, contextAttribs);
148 fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, surfaceAttribs);
  /external/skia/tools/gpu/gl/egl/
CreatePlatformGLTestContext_egl.cpp 137 EGLConfig surfaceConfig;
138 if (!eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs)) {
148 fContext = eglCreateContext(fDisplay, surfaceConfig, eglShareContext,
161 fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, kSurfaceAttribs);

Completed in 504 milliseconds