Searched refs:m_shaderType (Results 1 - 25 of 34) sorted by relevance

12

/external/deqp/modules/gles2/functional/
H A Des2fShaderApiTests.cpp330 , m_shaderType (shaderType)
336 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType));
344 const glu::ShaderType m_shaderType; member in class:deqp::gles2::Functional::CreateShaderCase
354 , m_shaderType (shaderType)
369 const char* shaderSource = getSimpleShaderSource(m_shaderType);
370 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType));
383 const glu::ShaderType m_shaderType; member in class:deqp::gles2::Functional::CompileShaderCase
532 , m_shaderType (shaderType)
538 return getSimpleShaderSource(m_shaderType);
552 if (m_shaderType
622 glu::ShaderType m_shaderType; member in class:deqp::gles2::Functional::ShaderSourceReplaceCase
748 glu::ShaderType m_shaderType; member in class:deqp::gles2::Functional::ShaderSourceSplitCase
772 const glu::ShaderType m_shaderType; member in class:deqp::gles2::Functional::ProgramStateCase
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderApiTests.cpp384 , m_shaderType (shaderType)
390 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType));
398 const glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::CreateShaderCase
408 , m_shaderType (shaderType)
423 const char* shaderSource = getSimpleShaderSource(m_shaderType);
424 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType));
437 const glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::CompileShaderCase
586 , m_shaderType (shaderType)
592 return getSimpleShaderSource(m_shaderType);
602 if (m_shaderType
679 glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::ShaderSourceReplaceCase
808 const glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::ShaderSourceSplitCase
832 const glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::ProgramStateCase
1406 const glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::ProgramBinaryPersistenceCase
[all...]
H A Des3fShaderPackingFunctionTests.cpp79 glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::ShaderPackingFunctionCase
90 , m_shaderType (shaderType)
105 m_executor = createExecutor(m_context.getRenderContext(), m_shaderType, m_spec);
H A Des3fShaderBuiltinVarTests.cpp99 const glu::ShaderType m_shaderType; member in class:deqp::gles3::Functional::ShaderBuiltinConstantCase
106 , m_shaderType (shaderType)
131 const de::UniquePtr<ShaderExecutor> shaderExecutor (createGetConstantExecutor(m_context.getRenderContext(), m_shaderType, m_varName));
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.hpp66 glu::ShaderType getType (void) const { return m_shaderType; }
80 const glu::ShaderType m_shaderType; member in class:deqp::gles31::Functional::ProgramInterfaceDefinition::Shader
H A Des31fOpaqueTypeIndexingTests.cpp347 const glu::ShaderType m_shaderType; member in class:deqp::gles31::Functional::__anon5375::SamplerIndexingCase
354 , m_shaderType (shaderType)
368 if (m_shaderType == SHADERTYPE_GEOMETRY)
373 if (m_shaderType == SHADERTYPE_TESSELLATION_CONTROL || m_shaderType == SHADERTYPE_TESSELLATION_EVALUATION)
501 de::Random rnd (deInt32Hash(m_samplerType) ^ deInt32Hash(m_shaderType) ^ deInt32Hash(m_indexExprType));
528 ShaderExecutorPtr executor (createExecutor(m_context.getRenderContext(), m_shaderType, shaderSpec));
719 const ShaderType m_shaderType; member in class:deqp::gles31::Functional::__anon5375::BlockArrayIndexingCase
728 , m_shaderType (shaderType)
741 if (m_shaderType
950 const glu::ShaderType m_shaderType; member in class:deqp::gles31::Functional::__anon5375::AtomicCounterIndexingCase
[all...]
H A Des31fLayoutBindingTests.cpp331 const ShaderType m_shaderType; member in class:deqp::gles31::Functional::__anon5357::LayoutBindingRenderCase
365 , m_shaderType (shaderType)
410 switch (m_shaderType)
454 if ( ((m_shaderType == SHADERTYPE_VERTEX) || (m_shaderType == SHADERTYPE_ALL)) && (maxVertexUnits < m_numBindings) )
456 if ( ((m_shaderType == SHADERTYPE_FRAGMENT) || (m_shaderType == SHADERTYPE_ALL)) && (maxFragmentUnits < m_numBindings) )
458 if ( (m_shaderType == SHADERTYPE_ALL) && (maxCombinedUnits < m_numBindings*2) )
704 const ShaderType m_shaderType; member in class:deqp::gles31::Functional::__anon5357::LayoutBindingNegativeCase
740 , m_shaderType (shaderTyp
[all...]
H A Des31fShaderIntegerFunctionTests.cpp179 glu::ShaderType m_shaderType; member in class:deqp::gles31::Functional::IntegerFunctionCase
191 , m_shaderType (shaderType)
207 m_executor = createExecutor(m_context.getRenderContext(), m_shaderType, m_spec);
374 const int integerLength = getShaderUintBitCount(m_shaderType, precision);
419 generateRandomInputData(rnd, m_shaderType, type, precision, in0, numValues - DE_LENGTH_OF_ARRAY(easyCases));
420 generateRandomInputData(rnd, m_shaderType, type, precision, in1, numValues - DE_LENGTH_OF_ARRAY(easyCases));
428 const int integerLength = getShaderUintBitCount(m_shaderType, precision);
470 const int integerLength = getShaderUintBitCount(m_shaderType, precision);
513 generateRandomInputData(rnd, m_shaderType, type, precision, in0, numValues - DE_LENGTH_OF_ARRAY(easyCases));
514 generateRandomInputData(rnd, m_shaderType, typ
[all...]
H A Des31fShaderUniformIntegerFunctionTests.cpp60 glu::ShaderType m_shaderType; member in class:deqp::gles31::Functional::UniformIntegerFunctionCase
70 , m_shaderType(shaderType)
105 m_executor = createExecutor(m_context.getRenderContext(), m_shaderType, m_spec);
H A Des31fProgramInterfaceDefinition.cpp106 : m_shaderType (type)
269 if (m_shaderType == glu::SHADERTYPE_VERTEX)
290 else if (m_shaderType == glu::SHADERTYPE_FRAGMENT)
311 else if (m_shaderType == glu::SHADERTYPE_COMPUTE)
334 else if (m_shaderType == glu::SHADERTYPE_GEOMETRY)
359 else if (m_shaderType == glu::SHADERTYPE_TESSELLATION_CONTROL)
384 else if (m_shaderType == glu::SHADERTYPE_TESSELLATION_EVALUATION)
H A Des31fShaderStateQueryTests.cpp371 const glu::ShaderType m_shaderType; member in class:deqp::gles31::Functional::__anon5439::ShaderLogCase
376 , m_shaderType (shaderType)
384 switch (m_shaderType)
423 shader = gl.glCreateShader(glu::getGLShaderType(m_shaderType));
H A Des31fProgramInterfaceQueryTestCase.cpp1142 const glu::ShaderType m_shaderType;
1148 , m_shaderType (shaderType)
1150 DE_ASSERT(m_shaderType < glu::SHADERTYPE_LAST);
1167 << "Verifying referenced by " << glu::getShaderTypeName(m_shaderType) << " shader, expecting "
1173 m_testCtx.getLog() << tcu::TestLog::Message << "\tError, invalid referenced_by_" << glu::getShaderTypeName(m_shaderType) << ", got " << propValue << tcu::TestLog::EndMessage;
1174 setError("referenced_by_" + std::string(glu::getShaderTypeName(m_shaderType)) + " invalid");
1267 const glu::ShaderType m_shaderType;
1273 , m_shaderType (shaderType)
1275 DE_ASSERT(m_shaderType < glu::SHADERTYPE_LAST);
1307 << "Verifying referenced by " << glu::getShaderTypeName(m_shaderType) << " shade
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderIntegerFunctionTests.cpp324 generateSources(m_shaderType, m_spec, programCollection);
333 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::IntegerFunctionCase
342 , m_shaderType (shaderType)
358 , m_shaderType (shaderType)
362 , m_executor (createExecutor(context, m_shaderType, m_spec))
371 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::IntegerFunctionTestInstance
465 const int integerLength = getShaderUintBitCount(m_shaderType, precision);
510 generateRandomInputData(rnd, m_shaderType, type, precision, in0, numValues - DE_LENGTH_OF_ARRAY(easyCases));
511 generateRandomInputData(rnd, m_shaderType, type, precision, in1, numValues - DE_LENGTH_OF_ARRAY(easyCases));
519 const int integerLength = getShaderUintBitCount(m_shaderType, precisio
[all...]
H A DvktAtomicOperationTests.cpp178 glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::__anon4470::AtomicOperationCaseInstance
228 , m_shaderType (shaderType)
366 switch (m_shaderType)
492 UniquePtr<ShaderExecutor> executor(createExecutor(m_context, m_shaderType, m_shaderSpec, *extraResourcesLayout));
521 generateSources(m_shaderType, m_shaderSpec, programCollection);
528 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::__anon4470::AtomicOperationCase
540 , m_shaderType (shaderType)
554 return new AtomicOperationCaseInstance(ctx, m_shaderSpec, m_shaderType, m_sign, m_atomicOp);
H A DvktShaderPackingFunctionTests.cpp107 generateSources(m_shaderType, m_spec, programCollection);
111 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::ShaderPackingFunctionCase
121 , m_shaderType (shaderType)
137 , m_shaderType (shaderType)
140 , m_executor (createExecutor(context, m_shaderType, m_spec))
146 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::ShaderPackingFunctionTestInstance
269 return new PackSnorm2x16CaseInstance(ctx, m_shaderType, m_spec, m_precision, getName());
373 return new UnpackSnorm2x16CaseInstance(ctx, m_shaderType, m_spec, getName());
492 return new PackUnorm2x16CaseInstance(ctx, m_shaderType, m_spec, m_precision, getName());
597 return new UnpackUnorm2x16CaseInstance(ctx, m_shaderType, m_spe
[all...]
H A DvktOpaqueTypeIndexingTests.cpp183 generateSources(m_shaderType, m_shaderSpec, programCollection);
188 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::__anon4475::OpaqueTypeIndexingCase
200 , m_shaderType (shaderType)
226 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::__anon4475::OpaqueTypeIndexingTestInstance
239 , m_shaderType (shaderType)
754 de::Random rnd (deInt32Hash(m_samplerType) ^ deInt32Hash(m_shaderType) ^ deInt32Hash(m_indexExprType));
937 UniquePtr<ShaderExecutor> executor (createExecutor(m_context, m_shaderType, m_shaderSpec, *extraResourcesLayout));
1119 m_shaderType,
1129 de::Random rnd (deInt32Hash(m_samplerType) ^ deInt32Hash(m_shaderType) ^ deInt32Hash(m_indexExprType));
1415 UniquePtr<ShaderExecutor> executor (createExecutor(m_context, m_shaderType, m_shaderSpe
[all...]
H A DvktShaderCommonFunctionTests.cpp450 generateSources(m_shaderType, m_spec, programCollection);
459 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::__anon4484::CommonFunctionCase
466 , m_shaderType (shaderType)
482 , m_shaderType (shaderType)
495 const glu::ShaderType m_shaderType; member in class:vkt::shaderexecutor::__anon4484::CommonFunctionTestInstance
667 return new AbsCaseInstance(ctx, m_shaderType, m_spec, m_numValues, getName());
776 return new SignCaseInstance(ctx, m_shaderType, m_spec, m_numValues, getName());
912 return new RoundEvenCaseInstance(ctx, m_shaderType, m_spec, m_numValues, getName());
992 return new ModfCaseInstance(ctx, m_shaderType, m_spec, m_numValues, getName());
1089 return new IsnanCaseInstance(ctx, m_shaderType, m_spe
[all...]
/external/deqp/modules/gles3/stress/
H A Des3sLongShaderTests.cpp361 const glu::ShaderType m_shaderType;
369 , m_shaderType (caseSpec.shaderType)
374 DE_ASSERT(m_shaderType == glu::SHADERTYPE_VERTEX || m_shaderType == glu::SHADERTYPE_FRAGMENT);
389 const glu::ShaderType otherShader = (m_shaderType == glu::SHADERTYPE_VERTEX) ? glu::SHADERTYPE_FRAGMENT : glu::SHADERTYPE_VERTEX;
/external/deqp/external/vulkancts/modules/vulkan/robustness/
H A DvktRobustnessBufferAccessTests.cpp105 const ShaderType m_shaderType; member in class:vkt::robustness::RobustBufferAccessTest
182 const ShaderType m_shaderType; member in class:vkt::robustness::BufferAccessInstance
214 // Used when m_shaderType == SHADER_TYPE_TEXEL_COPY
265 , m_shaderType (shaderType)
606 initBufferAccessPrograms(programCollection, m_shaderStage, m_shaderType, m_bufferFormat, m_readFromStorage);
613 return new BufferReadInstance(context, device, m_shaderType, m_shaderStage, m_bufferFormat, m_readFromStorage, m_readAccessRange, m_accessOutOfBackingMemory);
635 initBufferAccessPrograms(programCollection, m_shaderStage, m_shaderType, m_bufferFormat, false /* readFromStorage */);
642 return new BufferWriteInstance(context, device, m_shaderType, m_shaderStage, m_bufferFormat, m_writeAccessRange, m_accessOutOfBackingMemory);
658 , m_shaderType (shaderType)
668 const bool isTexelAccess = !!(m_shaderType
[all...]
/external/deqp/modules/egl/
H A DteglRobustnessTests.cpp235 const ShaderType& getShaderType (void) const { return m_shaderType; }
246 ShaderType m_shaderType; member in class:deqp::egl::__anon4905::RobustnessTestCase::Params
293 , m_shaderType (shaderType)
308 , m_shaderType (shaderType)
595 ShaderType m_shaderType; member in class:deqp::egl::__anon4905::ContextReset
618 , m_shaderType (shaderType)
627 , m_shaderType (shaderType)
729 if (m_shaderType == SHADERTYPE_COMPUTE)
753 const bool isVertCase = m_shaderType == SHADERTYPE_VERT;
754 const bool isFragCase = m_shaderType
[all...]
H A DteglGLES2SharingTests.cpp788 GLenum m_shaderType; member in class:deqp::egl::GLES2ShaderSharingTest
799 , m_shaderType (shaderType)
823 m_shader = m_gl.createShader(m_shaderType);
826 switch (m_shaderType)
852 switch (m_shaderType)
903 switch (m_shaderType)
933 switch (m_shaderType)
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemStorageBufferTests.cpp196 const glu::ShaderType m_shaderType; member in class:vkt::ProtectedMem::__anon4444::StorageBufferTestInstance
215 , m_shaderType (shaderType)
223 return new StorageBufferTestInstance<T>(ctx, m_testType, m_shaderType, m_testInput, m_validator);
231 const glu::ShaderType m_shaderType; member in class:vkt::ProtectedMem::__anon4444::StorageBufferTestCase
245 , m_shaderType (shaderType)
339 if (m_shaderType == glu::SHADERTYPE_FRAGMENT)
349 else if (m_shaderType == glu::SHADERTYPE_COMPUTE)
671 switch (m_shaderType)
/external/deqp/external/openglcts/modules/common/
H A DglcShaderConstExprTests.cpp84 glu::ShaderType m_shaderType; member in class:glcts::ShaderConstExpr::ExecutorTestCase
93 , m_shaderType(shaderType)
148 de::SharedPtr<ShaderExecutor> executor(createExecutor(m_context.getRenderContext(), m_shaderType, m_shaderSpec));
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureFilteringExplicitLodTests.cpp662 const glu::ShaderType m_shaderType; member in class:vkt::texture::__anon4629::TextureFilteringTestInstance
694 , m_shaderType (testCaseData.shaderType)
1018 m_executor = de::MovePtr<ShaderExecutor>(createExecutor(m_context, m_shaderType, m_shaderSpec, *m_extraResourcesLayout));
/external/deqp/modules/glshared/
H A DglsLifetimeTests.cpp741 , m_shaderType (ctx)
749 , m_shaderAtt (ctx, m_shaderType, m_programType)
754 &m_bufferType, &m_textureType, &m_rboType, &m_fboType, &m_shaderType, &m_programType

Completed in 429 milliseconds

12