HomeSort by relevance Sort by last modified time
    Searched refs:GLSLVersion (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/deqp/modules/glshared/
glsLongStressTestUtil.hpp 42 ProgramLibrary (glu::GLSLVersion glslVersion);
54 glu::GLSLVersion m_glslVersion;
glsTextureTestUtil.hpp 129 ProgramLibrary (const glu::RenderContext& context, tcu::TestLog& log, glu::GLSLVersion glslVersion, glu::Precision texCoordPrecision);
141 glu::GLSLVersion m_glslVersion;
149 TextureRenderer (const glu::RenderContext& context, tcu::TestLog& log, glu::GLSLVersion glslVersion, glu::Precision texCoordPrecision);
glsShaderConstExprTests.hpp 75 glu::GLSLVersion version,
glsRandomUniformBlockCase.hpp 70 glu::GLSLVersion glslVersion,
glsShaderExecUtil.hpp 60 glu::GLSLVersion version; //!< Shader version.
glsFragmentOpUtil.hpp 68 QuadRenderer (const glu::RenderContext& context, glu::GLSLVersion glslVersion);
glsFragmentOpUtil.cpp 110 static const char* getVertSrc (glu::GLSLVersion glslVersion)
112 if (glslVersion == glu::GLSL_VERSION_100_ES)
114 else if (glslVersion == glu::GLSL_VERSION_300_ES)
116 else if (glslVersion == glu::GLSL_VERSION_330)
123 static const char* getFragSrc (glu::GLSLVersion glslVersion)
125 if (glslVersion == glu::GLSL_VERSION_100_ES)
127 else if (glslVersion == glu::GLSL_VERSION_300_ES)
129 else if (glslVersion == glu::GLSL_VERSION_330
    [all...]
glsUniformBlockCase.hpp 246 UniformBlockCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, glu::GLSLVersion glslVersion, BufferMode bufferMode);
262 glu::GLSLVersion m_glslVersion;
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinition.hpp 67 glu::GLSLVersion getVersion (void) const { return m_version; }
74 Shader (glu::ShaderType type, glu::GLSLVersion version);
81 const glu::GLSLVersion m_version;
93 Shader* addShader (glu::ShaderType type, glu::GLSLVersion version);
es31fSSBOLayoutCase.hpp 155 SSBOLayoutCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, glu::GLSLVersion glslVersion, BufferMode bufferMode);
171 glu::GLSLVersion m_glslVersion;
es31fNegativeAdvancedBlendEquationTests.cpp 135 const glu::GLSLVersion version = isES32 ? glu::GLSL_VERSION_320_ES : glu::GLSL_VERSION_310_ES;
150 const glu::GLSLVersion version = isES32 ? glu::GLSL_VERSION_320_ES : glu::GLSL_VERSION_310_ES;
es31fNegativeShaderStorageTests.cpp 114 const glu::GLSLVersion version = isES32 ? glu::GLSL_VERSION_320_ES : glu::GLSL_VERSION_310_ES;
160 const glu::GLSLVersion version = isES32 ? glu::GLSL_VERSION_320_ES : glu::GLSL_VERSION_310_ES;
es31fNegativePreciseTests.cpp 66 const glu::GLSLVersion version = isES32 ? glu::GLSL_VERSION_320_ES : glu::GLSL_VERSION_310_ES;
  /external/mesa3d/src/mesa/main/
version.c 223 n = sscanf(version, "%u", &consts->GLSLVersion);
272 consts->GLSLVersion >= 130 &&
292 consts->GLSLVersion >= 140 &&
301 consts->GLSLVersion >= 150 &&
311 consts->GLSLVersion >= 330 &&
324 consts->GLSLVersion >= 400 &&
338 consts->GLSLVersion >= 410 &&
344 consts->GLSLVersion >= 420 &&
355 consts->GLSLVersion >= 430 &&
372 consts->GLSLVersion >= 440 &
    [all...]
  /external/deqp/framework/opengl/
gluShaderUtil.hpp 38 enum GLSLVersion
59 const char* getGLSLVersionName (GLSLVersion version);
60 const char* getGLSLVersionDeclaration (GLSLVersion version);
61 bool glslVersionUsesInOutQualifiers (GLSLVersion version);
62 bool glslVersionIsES (GLSLVersion version);
63 bool isGLSLVersionSupported (ContextType type, GLSLVersion version);
64 GLSLVersion getContextTypeGLSLVersion (ContextType type);
gluShaderUtil.cpp 33 const char* getGLSLVersionName (GLSLVersion version)
56 const char* getGLSLVersionDeclaration (GLSLVersion version)
79 bool glslVersionUsesInOutQualifiers (GLSLVersion version)
84 bool glslVersionIsES (GLSLVersion version)
99 static ApiType getMinAPIForGLSLVersion (GLSLVersion version)
122 bool isGLSLVersionSupported (ContextType type, GLSLVersion version)
127 GLSLVersion getContextTypeGLSLVersion (ContextType type)
132 if (isGLSLVersionSupported(type, GLSLVersion(version)))
133 return GLSLVersion(version);
gluShaderLibrary.hpp 140 glu::GLSLVersion targetVersion;
gluES3PlusWrapperContext.cpp 75 const glu::GLSLVersion nativeGLSLVersion;
274 static void translateShaderSource (deUint32 shaderType, std::ostream& dst, const std::string& src, const std::vector<std::string>& filteredExtensions, GLSLVersion version)
410 static std::string translateShaderSources (deUint32 shaderType, deInt32 count, const char* const* strings, const int* length, const std::vector<std::string>& filteredExtensions, GLSLVersion version)
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_extensions.c 138 ctx->Const.GLSLVersion = 450;
140 ctx->Const.GLSLVersion = 450;
142 ctx->Const.GLSLVersion = 330;
144 ctx->Const.GLSLVersion = 120;
147 ctx->Extensions.EXT_shader_integer_mix = ctx->Const.GLSLVersion >= 130;
148 ctx->Extensions.MESA_shader_integer_functions = ctx->Const.GLSLVersion >= 130;
156 ctx->Extensions.ARB_texture_query_levels = ctx->Const.GLSLVersion >= 130;
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.hpp 53 glu::GLSLVersion glslVersion;
61 : glslVersion(glu::GLSL_VERSION_310_ES)
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_extensions.c 80 ctx->Const.GLSLVersion = 120;
  /external/mesa3d/src/mesa/state_tracker/
st_extensions.c     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBufferMemoryAliasing.cpp 86 const glu::GLSLVersion glslVersion);
93 const glu::GLSLVersion m_glslVersion;
100 const glu::GLSLVersion glslVersion)
103 , m_glslVersion (glslVersion)
vktSparseResourcesBufferSparseResidency.cpp 67 const glu::GLSLVersion glslVersion);
74 const glu::GLSLVersion m_glslVersion;
81 const glu::GLSLVersion glslVersion)
84 , m_glslVersion (glslVersion)
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageAtomicOperationTests.cpp 251 const glu::GLSLVersion glslVersion);
261 const glu::GLSLVersion m_glslVersion;
271 const glu::GLSLVersion glslVersion)
277 , m_glslVersion (glslVersion)
324 const glu::GLSLVersion glslVersion);
334 const glu::GLSLVersion m_glslVersion;
344 const glu::GLSLVersion glslVersion
    [all...]

Completed in 410 milliseconds

1 2 3