HomeSort by relevance Sort by last modified time
    Searched refs:SurfaceType (Results 1 - 15 of 15) sorted by null

  /external/deqp/framework/common/
tcuCommandLine.hpp 64 enum SurfaceType
139 SurfaceType getSurfaceType (void) const;
tcuCommandLine.cpp 70 DE_DECLARE_COMMAND_LINE_OPT(SurfaceType, tcu::SurfaceType);
120 static const NamedValue<tcu::SurfaceType> s_surfaceTypes[] =
151 << Option<SurfaceType> (DE_NULL, "deqp-surface-type", "Use given surface type", s_surfaceTypes, "window")
798 SurfaceType CommandLine::getSurfaceType (void) const { return m_cmdLine.getOption<opt::SurfaceType>(); }
  /external/deqp/framework/opengl/
gluRenderConfig.hpp 42 enum SurfaceType
70 SurfaceType surfaceType;
87 , surfaceType (SURFACETYPE_DONT_CARE)
  /external/deqp/modules/egl/
teglMakeCurrentPerfTests.cpp 64 enum SurfaceType
73 SurfaceType surfaceTypes;
215 vector<SurfaceType> types;
231 SurfaceType type = types[surfaceNdx % types.size()];
558 const MakeCurrentPerfCase::SurfaceType types[] = {
588 const MakeCurrentPerfCase::SurfaceType types[] = {
625 const MakeCurrentPerfCase::SurfaceType types[] = {
630 (MakeCurrentPerfCase::SurfaceType)(MakeCurrentPerfCase::SURFACETYPE_PBUFFER |MakeCurrentPerfCase::SURFACETYPE_PIXMAP),
631 (MakeCurrentPerfCase::SurfaceType)(MakeCurrentPerfCase::SURFACETYPE_PBUFFER |MakeCurrentPerfCase::SURFACETYPE_WINDOW),
632 (MakeCurrentPerfCase::SurfaceType)(MakeCurrentPerfCase::SURFACETYPE_PIXMAP |MakeCurrentPerfCase::SURFACETYPE_WINDOW)
    [all...]
  /external/mesa3d/src/egl/main/
eglsurface.c 310 if ((conf->SurfaceType & type) == 0) {
445 confval = surface->Config->SurfaceType;
462 confval = surface->Config->SurfaceType;
eglconfig.h 65 EGLint SurfaceType;
113 ATTRIB_MAP(EGL_SURFACE_TYPE, SurfaceType);
eglconfig.c 404 if (!(conf->SurfaceType & EGL_WINDOW_BIT)) {
408 if (!(conf->SurfaceType & EGL_PBUFFER_BIT)) {
546 if (!(conf->SurfaceType & EGL_WINDOW_BIT))
  /external/skia/tests/
SurfaceTest.cpp 23 enum SurfaceType {
35 static SkSurface* createSurface(SurfaceType surfaceType, GrContext* context,
43 switch (surfaceType) {
288 SurfaceType fType;
353 static void TestSurfaceCopyOnWrite(skiatest::Reporter* reporter, SurfaceType surfaceType,
356 SkSurface* surface = createSurface(surfaceType, context);
434 SurfaceType surfaceType,
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderDerivateTests.cpp 88 enum SurfaceType
587 SurfaceType m_surfaceType;
939 LinearDerivateCase (Context& context, const char* name, const char* description, DerivateFunc func, glu::DataType type, glu::Precision precision, deUint32 hint, SurfaceType surfaceType, int numSamples, const char* fragmentSrcTmpl);
952 LinearDerivateCase::LinearDerivateCase (Context& context, const char* name, const char* description, DerivateFunc func, glu::DataType type, glu::Precision precision, deUint32 hint, SurfaceType surfaceType, int numSamples, const char* fragmentSrcTmpl)
962 m_surfaceType = surfaceType;
    [all...]
  /external/mesa3d/src/egl/drivers/glx/
egl_glx.c 325 if (!GLX_conf->Base.SurfaceType)
384 GLX_conf->Base.SurfaceType = EGL_WINDOW_BIT;
387 GLX_conf->Base.SurfaceType |= EGL_PIXMAP_BIT;
440 conf->SurfaceType &= ~EGL_WINDOW_BIT;
443 conf->SurfaceType |= EGL_PBUFFER_BIT;
447 if (!(conf->SurfaceType & EGL_WINDOW_BIT)) {
    [all...]
  /external/deqp/framework/egl/
egluGLUtil.cpp 172 if (renderConfig.surfaceType != (glu::RenderConfig::SurfaceType)glu::RenderConfig::DONT_CARE)
174 EGLint surfaceType = 0;
177 switch (renderConfig.surfaceType)
186 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, EGL_SURFACE_TYPE, &surfaceType));
188 if ((surfaceType & requiredSurface) == 0)
egluGLContextFactory.cpp 290 glu::RenderConfig::SurfaceType surfaceType = config.surfaceType;
307 if (surfaceType == glu::RenderConfig::SURFACETYPE_DONT_CARE)
313 surfaceType = glu::RenderConfig::SURFACETYPE_WINDOW;
315 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC;
317 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE;
322 switch (surfaceType)
  /external/mesa3d/src/egl/drivers/dri2/
egl_dri2.c 206 base.SurfaceType = surface_type;
224 base.SurfaceType = EGL_DONT_CARE;
252 conf->base.SurfaceType = 0;
271 conf->base.SurfaceType |= surface_type;
778 if (conf->SurfaceType & EGL_WINDOW_BIT)
    [all...]
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 403 static deUint32 surfaceTypeToDrawableBits (RenderConfig::SurfaceType type)
435 deUint32 bits = surfaceTypeToDrawableBits(renderCfg.surfaceType);
442 if (renderCfg.surfaceType == RenderConfig::SURFACETYPE_WINDOW &&
572 RenderConfig::SurfaceType surfaceType = config.surfaceType;
574 if (surfaceType == RenderConfig::SURFACETYPE_DONT_CARE)
578 surfaceType = RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE;
580 surfaceType = RenderConfig::SURFACETYPE_WINDOW;
583 switch (surfaceType)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d.c 297 conf->SurfaceType = surface_type;

Completed in 436 milliseconds