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 86 EGLConfig surfaceConfig;
87 SkAssertResult(eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs));
95 fDisplay, surfaceConfig, nullptr, kEGLContextAttribsForOpenGLES);
116 fSurfaceAndroid = eglCreateWindowSurface(fDisplay, surfaceConfig, fNativeWindow, windowAttribs);
119 fSurfaceAndroid = eglCreateWindowSurface(fDisplay, surfaceConfig, fNativeWindow, nullptr);
132 eglGetConfigAttrib(fDisplay, surfaceConfig, EGL_STENCIL_SIZE, &fStencilBits);
133 eglGetConfigAttrib(fDisplay, surfaceConfig, EGL_SAMPLES, &fSampleCount);
  /external/skia/tools/gpu/gl/angle/
GLTestContext_angle.cpp 189 EGLConfig surfaceConfig;
190 if (!eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs)) {
202 fContext = eglCreateContext(fDisplay, surfaceConfig, eglShareContext, contextAttribs);
215 fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, surfaceAttribs);
  /external/skia/tools/gpu/gl/egl/
CreatePlatformGLTestContext_egl.cpp 140 EGLConfig surfaceConfig;
141 if (!eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs)) {
151 fContext = eglCreateContext(fDisplay, surfaceConfig, eglShareContext,
164 fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, kSurfaceAttribs);

Completed in 188 milliseconds