Home
last modified time | relevance | path

Searched refs:surfaceType (Results 1 – 25 of 26) sorted by relevance

12

/external/deqp/framework/opengl/
DgluRenderConfig.cpp147 …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()
DgluRenderConfig.hpp70 SurfaceType surfaceType; member
87 , surfaceType (SURFACETYPE_DONT_CARE) in RenderConfig()
/external/skia/tests/
DSurfaceTest.cpp35 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/
DegluGLUtil.cpp172 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()
DegluGLContextFactory.cpp290 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()
DegluConfigInfo.hpp66 deInt32 surfaceType; member in eglu::ConfigInfo
99 , surfaceType (0) in ConfigInfo()
DegluConfigInfo.cpp64 case EGL_SURFACE_TYPE: return surfaceType; in getAttribute()
101 egl.getConfigAttrib(display, config, EGL_SURFACE_TYPE, &dst->surfaceType); in queryConfigInfo()
DegluConfigFilter.hpp61 deUint32 surfaceType (void) const;
DegluConfigFilter.cpp70 deUint32 CandidateConfig::surfaceType (void) const { return (deUint32)get(EGL_SURFACE_TYPE); } in surfaceType() function in eglu::CandidateConfig
/external/deqp/modules/egl/
DteglQuerySurfaceTests.cpp192 …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 …]
DteglCreateSurfaceTests.cpp285 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()
DteglRenderCase.cpp292 …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()
DteglColorClearCase.hpp44 eglw::EGLint surfaceType,
62 eglw::EGLint surfaceType,
DteglResizeTests.cpp116 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
DteglColorClearCase.cpp163 …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()
DteglNativeColorMappingTests.cpp565 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()
DteglNativeCoordMappingTests.cpp601 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()
DteglRenderCase.hpp80 …st char* name, const char* description, eglw::EGLint api, eglw::EGLint surfaceType, const eglu::Fi…
DteglRenderTests.cpp671 …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()
DteglChooseConfigTests.cpp586 static const EGLenum surfaceType[] = in init() local
591 …ew ChooseConfigRandomCase(m_eglTestCtx, "surface_type", "Surface type rules", toSet(surfaceType))); in init()
DteglSwapBuffersTests.cpp438 static bool isWindow (const eglu::CandidateConfig& c) { return (c.surfaceType() & EGL_WINDOW_BIT) !… in isWindow()
/external/deqp/modules/gles3/functional/
Des3fShaderDerivateTests.cpp939 …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/
DtcuX11GlxPlatform.cpp435 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/
DtcuWGLContextFactory.cpp94 if (config.surfaceType != glu::RenderConfig::SURFACETYPE_WINDOW && in WGLContext()
95 config.surfaceType != glu::RenderConfig::SURFACETYPE_DONT_CARE) in WGLContext()
/external/deqp/framework/platform/ios/
DtcuIOSPlatform.mm80 if (config.surfaceType == glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC)
82 else if (config.surfaceType == glu::RenderConfig::SURFACETYPE_WINDOW)

12