/external/deqp/framework/opengl/ |
D | gluRenderConfig.cpp | 147 …case tcu::SURFACETYPE_WINDOW: config->surfaceType = RenderConfig::SURFACETYPE_WINDOW; break; in parseRenderConfig() 148 …case tcu::SURFACETYPE_OFFSCREEN_NATIVE: config->surfaceType = RenderConfig::SURFACETYPE_OFFSCREE… in parseRenderConfig() 149 …case tcu::SURFACETYPE_OFFSCREEN_GENERIC: config->surfaceType = RenderConfig::SURFACETYPE_OFFSCREE… in parseRenderConfig() 150 …case tcu::SURFACETYPE_FBO: config->surfaceType = RenderConfig::SURFACETYPE_DONT_CARE; break; in parseRenderConfig() 151 …case tcu::SURFACETYPE_LAST: config->surfaceType = RenderConfig::SURFACETYPE_DONT_CARE; brea… in parseRenderConfig()
|
D | gluRenderConfig.hpp | 70 SurfaceType surfaceType; member 87 , surfaceType (SURFACETYPE_DONT_CARE) in RenderConfig()
|
/external/skia/tests/ |
D | SurfaceTest.cpp | 35 static SkSurface* createSurface(SurfaceType surfaceType, GrContext* context, in createSurface() argument 43 switch (surfaceType) { in createSurface() 353 static void TestSurfaceCopyOnWrite(skiatest::Reporter* reporter, SurfaceType surfaceType, in TestSurfaceCopyOnWrite() argument 356 SkSurface* surface = createSurface(surfaceType, context); in TestSurfaceCopyOnWrite() 434 SurfaceType surfaceType, in TestSurfaceWritableAfterSnapshotRelease() argument 439 SkAutoTUnref<SkSurface> surface(createSurface(surfaceType, context)); in TestSurfaceWritableAfterSnapshotRelease() 448 SurfaceType surfaceType, in Test_crbug263329() argument 454 SkAutoTUnref<SkSurface> surface1(createSurface(surfaceType, context)); in Test_crbug263329() 455 SkAutoTUnref<SkSurface> surface2(createSurface(surfaceType, context)); in Test_crbug263329() 483 SurfaceType surfaceType, in TestGetTexture() argument [all …]
|
/external/deqp/framework/egl/ |
D | egluGLUtil.cpp | 172 if (renderConfig.surfaceType != (glu::RenderConfig::SurfaceType)glu::RenderConfig::DONT_CARE) in configMatches() 174 EGLint surfaceType = 0; in configMatches() local 177 switch (renderConfig.surfaceType) in configMatches() 186 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, EGL_SURFACE_TYPE, &surfaceType)); in configMatches() 188 if ((surfaceType & requiredSurface) == 0) in configMatches()
|
D | egluGLContextFactory.cpp | 290 glu::RenderConfig::SurfaceType surfaceType = config.surfaceType; in create() local 307 if (surfaceType == glu::RenderConfig::SURFACETYPE_DONT_CARE) in create() 313 surfaceType = glu::RenderConfig::SURFACETYPE_WINDOW; in create() 315 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC; in create() 317 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE; in create() 322 switch (surfaceType) in create()
|
D | egluConfigInfo.hpp | 66 deInt32 surfaceType; member in eglu::ConfigInfo 99 , surfaceType (0) in ConfigInfo()
|
D | egluConfigInfo.cpp | 64 case EGL_SURFACE_TYPE: return surfaceType; in getAttribute() 101 egl.getConfigAttrib(display, config, EGL_SURFACE_TYPE, &dst->surfaceType); in queryConfigInfo()
|
D | egluConfigFilter.hpp | 61 deUint32 surfaceType (void) const;
|
D | egluConfigFilter.cpp | 70 deUint32 CandidateConfig::surfaceType (void) const { return (deUint32)get(EGL_SURFACE_TYPE); } in surfaceType() function in eglu::CandidateConfig
|
/external/deqp/modules/egl/ |
D | teglQuerySurfaceTests.cpp | 192 …if (multisampleResolve == EGL_MULTISAMPLE_RESOLVE_BOX && !(info.surfaceType & EGL_MULTISAMPLE_RESO… in checkCommonAttributes() 209 if (swapBehavior == EGL_BUFFER_PRESERVED && !(info.surfaceType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT)) in checkCommonAttributes() 226 if (alphaFormat == EGL_ALPHA_FORMAT_PRE && !(info.surfaceType & EGL_VG_ALPHA_FORMAT_PRE_BIT)) in checkCommonAttributes() 243 if (colorspace == EGL_VG_COLORSPACE_LINEAR && !(info.surfaceType & EGL_VG_COLORSPACE_LINEAR_BIT)) in checkCommonAttributes() 459 …void testAttributes (EGLDisplay display, EGLSurface surface, EGLint surfaceType, const ConfigInfo… 467 void SurfaceAttribCase::testAttributes (EGLDisplay display, EGLSurface surface, EGLint surfaceType,… in testAttributes() argument 489 if (surfaceType == EGL_PBUFFER_BIT) in testAttributes() 682 static bool surfaceType (const eglu::CandidateConfig& c) in surfaceType() function 684 return (c.surfaceType() & Type) == Type; in surfaceType() 700 baseFilters << surfaceType<EGL_WINDOW_BIT>; in init() [all …]
|
D | teglCreateSurfaceTests.cpp | 285 static bool surfaceType (const eglu::CandidateConfig& c) in surfaceType() function 287 return (c.surfaceType() & Type) == Type; in surfaceType() 298 baseFilters << surfaceType<EGL_WINDOW_BIT>; in init() 313 baseFilters << surfaceType<EGL_PIXMAP_BIT>; in init() 328 baseFilters << surfaceType<EGL_PBUFFER_BIT>; in init() 343 baseFilters << surfaceType<EGL_WINDOW_BIT>; in init() 358 baseFilters << surfaceType<EGL_PIXMAP_BIT>; in init()
|
D | teglRenderCase.cpp | 292 …TestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::Fi… in MultiContextRenderCase() argument 293 : RenderCase (eglTestCtx, name, description, surfaceType, filters) in MultiContextRenderCase() 390 static bool surfaceType (const eglu::CandidateConfig& c) in surfaceType() function 392 return (c.surfaceType() & Type) == Type; in surfaceType() 422 { "window", EGL_WINDOW_BIT, surfaceType<EGL_WINDOW_BIT> }, in getDefaultRenderFilterLists() 423 { "pixmap", EGL_PIXMAP_BIT, surfaceType<EGL_PIXMAP_BIT>, }, in getDefaultRenderFilterLists() 424 { "pbuffer", EGL_PBUFFER_BIT, surfaceType<EGL_PBUFFER_BIT> } in getDefaultRenderFilterLists()
|
D | teglColorClearCase.hpp | 44 eglw::EGLint surfaceType, 62 eglw::EGLint surfaceType,
|
D | teglResizeTests.cpp | 116 virtual EGLenum surfaceType (void) const { return EGL_WINDOW_BIT; } in surfaceType() function in deqp::egl::ResizeTest 131 EGLConfig getEGLConfig (const Library& egl, const EGLDisplay eglDisplay, EGLenum surfaceType) in getEGLConfig() argument 135 attribMap[EGL_SURFACE_TYPE] = surfaceType; in getEGLConfig() 148 const EGLConfig eglConfig = getEGLConfig(egl, eglDisplay, surfaceType()); in init() 377 EGLenum surfaceType (void) const; 380 EGLenum PreserveBackBufferCase::surfaceType (void) const in surfaceType() function in deqp::egl::PreserveBackBufferCase
|
D | teglColorClearCase.cpp | 163 …TestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::Fi… in SingleThreadColorClearCase() argument 164 …: MultiContextRenderCase(eglTestCtx, name, description, api, surfaceType, filters, numContextsPerA… in SingleThreadColorClearCase() 324 …TestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::Fi… in MultiThreadColorClearCase() argument 325 …: MultiContextRenderCase(eglTestCtx, name, description, api, surfaceType, filters, numContextsPerA… in MultiThreadColorClearCase()
|
D | teglNativeColorMappingTests.cpp | 565 static bool surfaceType (const eglu::CandidateConfig& c) in surfaceType() function 567 return (c.surfaceType() & Type) == Type; in surfaceType() 577 baseFilters << surfaceType<EGL_WINDOW_BIT>; in addTestGroups() 581 baseFilters << surfaceType<EGL_PIXMAP_BIT>; in addTestGroups() 585 baseFilters << surfaceType<EGL_PBUFFER_BIT>; in addTestGroups()
|
D | teglNativeCoordMappingTests.cpp | 601 static bool surfaceType (const eglu::CandidateConfig& c) in surfaceType() function 603 return (c.surfaceType() & Type) == Type; in surfaceType() 613 baseFilters << surfaceType<EGL_WINDOW_BIT>; in addTestGroups() 617 baseFilters << surfaceType<EGL_PIXMAP_BIT>; in addTestGroups() 621 baseFilters << surfaceType<EGL_PBUFFER_BIT>; in addTestGroups()
|
D | teglRenderCase.hpp | 80 …st char* name, const char* description, eglw::EGLint api, eglw::EGLint surfaceType, const eglu::Fi…
|
D | teglRenderTests.cpp | 671 …TestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::Fi… 683 …TestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::Fi… in SingleThreadRenderCase() argument 684 …: MultiContextRenderCase(eglTestCtx, name, description, api, surfaceType, filters, numContextsPerA… in SingleThreadRenderCase() 805 …TestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::Fi… 884 …TestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::Fi… in MultiThreadRenderCase() argument 885 …: MultiContextRenderCase(eglTestCtx, name, description, api, surfaceType, filters, numContextsPerA… in MultiThreadRenderCase()
|
D | teglChooseConfigTests.cpp | 586 static const EGLenum surfaceType[] = in init() local 591 …ew ChooseConfigRandomCase(m_eglTestCtx, "surface_type", "Surface type rules", toSet(surfaceType))); in init()
|
D | teglSwapBuffersTests.cpp | 438 static bool isWindow (const eglu::CandidateConfig& c) { return (c.surfaceType() & EGL_WINDOW_BIT) !… in isWindow()
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderDerivateTests.cpp | 939 …u::DataType type, glu::Precision precision, deUint32 hint, SurfaceType surfaceType, int numSamples… 952 …u::DataType type, glu::Precision precision, deUint32 hint, SurfaceType surfaceType, int numSamples… in LinearDerivateCase() argument 962 m_surfaceType = surfaceType; in LinearDerivateCase() 1138 …u::DataType type, glu::Precision precision, deUint32 hint, SurfaceType surfaceType, int numSamples… 1156 …u::DataType type, glu::Precision precision, deUint32 hint, SurfaceType surfaceType, int numSamples) in TextureDerivateCase() argument 1166 m_surfaceType = surfaceType; in TextureDerivateCase() 1614 SurfaceType surfaceType; in init() member 1637 SurfaceType surfaceType; in init() member 1649 SurfaceType surfaceType; in init() member 1692 const SurfaceType surfaceType = SURFACETYPE_DEFAULT_FRAMEBUFFER; in init() local [all …]
|
/external/deqp/framework/platform/X11/ |
D | tcuX11GlxPlatform.cpp | 435 deUint32 bits = surfaceTypeToDrawableBits(renderCfg.surfaceType); in configMatches() 442 if (renderCfg.surfaceType == RenderConfig::SURFACETYPE_WINDOW && in configMatches() 572 RenderConfig::SurfaceType surfaceType = config.surfaceType; in createDrawable() local 574 if (surfaceType == RenderConfig::SURFACETYPE_DONT_CARE) in createDrawable() 578 surfaceType = RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE; in createDrawable() 580 surfaceType = RenderConfig::SURFACETYPE_WINDOW; in createDrawable() 583 switch (surfaceType) in createDrawable()
|
/external/deqp/framework/platform/win32/ |
D | tcuWGLContextFactory.cpp | 94 if (config.surfaceType != glu::RenderConfig::SURFACETYPE_WINDOW && in WGLContext() 95 config.surfaceType != glu::RenderConfig::SURFACETYPE_DONT_CARE) in WGLContext()
|
/external/deqp/framework/platform/ios/ |
D | tcuIOSPlatform.mm | 80 if (config.surfaceType == glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC) 82 else if (config.surfaceType == glu::RenderConfig::SURFACETYPE_WINDOW)
|