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

  /external/deqp/framework/egl/
egluConfigFilter.cpp 83 deUint32 CandidateConfig::surfaceType (void) const { return (deUint32)get(EGL_SURFACE_TYPE); }
egluGLUtil.cpp 218 if (renderConfig.surfaceType != glu::RenderConfig::SURFACETYPE_DONT_CARE)
220 EGLint surfaceType = 0;
223 switch (renderConfig.surfaceType)
232 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, EGL_SURFACE_TYPE, &surfaceType));
234 if ((surfaceType & requiredSurface) == 0)
egluConfigInfo.hpp 68 deInt32 surfaceType;
114 , surfaceType (0)
egluGLContextFactory.cpp 312 glu::RenderConfig::SurfaceType surfaceType = config.surfaceType;
336 if (surfaceType == glu::RenderConfig::SURFACETYPE_DONT_CARE)
342 surfaceType = glu::RenderConfig::SURFACETYPE_WINDOW;
344 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC;
346 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE;
351 switch (surfaceType)
  /external/deqp/modules/egl/
teglMutableRenderBufferTests.cpp 135 EGLint surfaceType = -1;
136 EGLU_CHECK_CALL(egl, getConfigAttrib(m_eglDisplay, *config, EGL_SURFACE_TYPE, &surfaceType));
138 if (!(surfaceType & EGL_MUTABLE_RENDER_BUFFER_BIT_KHR))
teglCreateSurfaceTests.cpp 344 static bool surfaceType (const eglu::CandidateConfig& c)
346 return (c.surfaceType() & Type) == Type;
357 baseFilters << surfaceType<EGL_WINDOW_BIT>;
372 baseFilters << surfaceType<EGL_PIXMAP_BIT>;
387 baseFilters << surfaceType<EGL_PBUFFER_BIT>;
402 baseFilters << surfaceType<EGL_WINDOW_BIT>;
417 baseFilters << surfaceType<EGL_PIXMAP_BIT>;
432 baseFilters << surfaceType<EGL_WINDOW_BIT>;
447 baseFilters << surfaceType<EGL_PIXMAP_BIT>;
teglNativeColorMappingTests.cpp 565 static bool surfaceType (const eglu::CandidateConfig& c)
567 return (c.surfaceType() & Type) == Type;
577 baseFilters << surfaceType<EGL_WINDOW_BIT>;
581 baseFilters << surfaceType<EGL_PIXMAP_BIT>;
585 baseFilters << surfaceType<EGL_PBUFFER_BIT>;
teglQuerySurfaceTests.cpp 192 if (multisampleResolve == EGL_MULTISAMPLE_RESOLVE_BOX && !(info.surfaceType & EGL_MULTISAMPLE_RESOLVE_BOX_BIT))
209 if (swapBehavior == EGL_BUFFER_PRESERVED && !(info.surfaceType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT))
226 if (alphaFormat == EGL_ALPHA_FORMAT_PRE && !(info.surfaceType & EGL_VG_ALPHA_FORMAT_PRE_BIT))
243 if (colorspace == EGL_VG_COLORSPACE_LINEAR && !(info.surfaceType & EGL_VG_COLORSPACE_LINEAR_BIT))
459 void testAttributes (EGLDisplay display, EGLSurface surface, EGLint surfaceType, const ConfigInfo& info);
467 void SurfaceAttribCase::testAttributes (EGLDisplay display, EGLSurface surface, EGLint surfaceType, const ConfigInfo& info)
489 if (surfaceType == EGL_PBUFFER_BIT)
682 static bool surfaceType (const eglu::CandidateConfig& c)
684 return (c.surfaceType() & Type) == Type;
700 baseFilters << surfaceType<EGL_WINDOW_BIT>
    [all...]
teglRenderCase.cpp 297 MultiContextRenderCase::MultiContextRenderCase (EglTestContext& eglTestCtx, const char* name, const char* description, EGLint api, EGLint surfaceType, const eglu::FilterList& filters, int numContextsPerApi)
298 : RenderCase (eglTestCtx, name, description, surfaceType, filters)
395 static bool surfaceType (const eglu::CandidateConfig& c)
397 return (c.surfaceType() & Type) == Type;
437 { "window", EGL_WINDOW_BIT, surfaceType<EGL_WINDOW_BIT> },
438 { "pixmap", EGL_PIXMAP_BIT, surfaceType<EGL_PIXMAP_BIT>, },
439 { "pbuffer", EGL_PBUFFER_BIT, surfaceType<EGL_PBUFFER_BIT> }
teglChooseConfigTests.cpp 624 static const EGLenum surfaceType[] =
629 randomGroup->addChild(new ChooseConfigRandomCase(m_eglTestCtx, "surface_type", "Surface type rules", toSet(surfaceType)));
teglNativeCoordMappingTests.cpp 601 static bool surfaceType (const eglu::CandidateConfig& c)
603 return (c.surfaceType() & Type) == Type;
613 baseFilters << surfaceType<EGL_WINDOW_BIT>;
617 baseFilters << surfaceType<EGL_PIXMAP_BIT>;
621 baseFilters << surfaceType<EGL_PBUFFER_BIT>;
teglResizeTests.cpp 116 virtual EGLenum surfaceType (void) const { return EGL_WINDOW_BIT; }
131 EGLConfig getEGLConfig (const Library& egl, const EGLDisplay eglDisplay, EGLenum surfaceType)
135 attribMap[EGL_SURFACE_TYPE] = surfaceType;
148 const EGLConfig eglConfig = getEGLConfig(egl, eglDisplay, surfaceType());
378 EGLenum surfaceType (void) const;
381 EGLenum PreserveBackBufferCase::surfaceType (void) const
  /frameworks/av/camera/camera2/
OutputConfiguration.cpp 104 int surfaceType = SURFACE_TYPE_UNKNOWN;
105 if ((err = parcel->readInt32(&surfaceType)) != OK) {
134 if (isDeferred && surfaceType != SURFACE_TYPE_SURFACE_VIEW &&
135 surfaceType != SURFACE_TYPE_SURFACE_TEXTURE) {
150 mSurfaceType = surfaceType;
162 ALOGV("%s: OutputConfiguration: rotation = %d, setId = %d, surfaceType = %d,"
182 int rotation, const String16& physicalCameraId, int surfaceSetID, int surfaceType,
184 : mGbps(gbps), mRotation(rotation), mSurfaceSetID(surfaceSetID), mSurfaceType(surfaceType),
  /external/deqp/framework/opengl/
gluRenderConfig.hpp 51 enum SurfaceType
79 SurfaceType surfaceType;
98 , surfaceType (SURFACETYPE_DONT_CARE)
  /external/deqp/framework/platform/lnx/X11/
tcuLnxX11GlxPlatform.cpp 477 static deUint32 surfaceTypeToDrawableBits (RenderConfig::SurfaceType type)
509 deUint32 bits = surfaceTypeToDrawableBits(renderCfg.surfaceType);
516 if (renderCfg.surfaceType == RenderConfig::SURFACETYPE_WINDOW &&
653 RenderConfig::SurfaceType surfaceType = config.surfaceType;
655 if (surfaceType == RenderConfig::SURFACETYPE_DONT_CARE)
659 surfaceType = RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE;
661 surfaceType = RenderConfig::SURFACETYPE_WINDOW;
664 switch (surfaceType)
    [all...]
  /external/swiftshader/tests/GLESUnitTests/
unittests.cpp 139 EGLint surfaceType = 0;
140 eglGetConfigAttrib(display, config, EGL_SURFACE_TYPE, &surfaceType);
142 EXPECT_TRUE(surfaceType & EGL_WINDOW_BIT);
    [all...]
  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.cpp 518 bool deferredConsumer, int surfaceType) const {
528 bool validSurfaceType = ((surfaceType == OutputConfiguration::SURFACE_TYPE_SURFACE_VIEW) ||
529 (surfaceType == OutputConfiguration::SURFACE_TYPE_SURFACE_TEXTURE));
532 ALOGE("%s: Target surface has invalid surfaceType = %d.", __FUNCTION__, surfaceType);
693 auto surfaceType = it.getSurfaceType();
695 if (surfaceType == OutputConfiguration::SURFACE_TYPE_SURFACE_VIEW) {
    [all...]
  /device/generic/goldfish-opengl/system/egl/
egl.cpp 280 egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
288 EGLint getSurfaceType() { return surfaceType; }
324 EGLint surfaceType;
328 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType)
330 surfaceType(surfaceType), rcSurface(0)
1042 EGLint surfaceType;
1043 if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE) return EGL_FALSE;
1045 if (!(surfaceType & EGL_WINDOW_BIT)) {
1067 EGLint surfaceType;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderDerivateTests.cpp 93 enum SurfaceType
534 surfaceType = SURFACETYPE_UNORM_FBO;
546 SurfaceType surfaceType;
630 m_colorFormat = vk::mapTextureFormat(glu::mapGLInternalFormat(m_definitions.surfaceType == SURFACETYPE_FLOAT_FBO ? GL_RGBA32UI : GL_RGBA8));
641 switch (m_definitions.surfaceType)
712 if (m_definitions.surfaceType == SURFACETYPE_FLOAT_FBO)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderDerivateTests.cpp 88 enum SurfaceType
616 SurfaceType m_surfaceType;
    [all...]

Completed in 1788 milliseconds