Home
last modified time | relevance | path

Searched refs:shaderInfo (Results 1 - 24 of 24) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkSpirVProgram.cpp31 tcu::TestLog& operator<< (tcu::TestLog& log, const SpirVProgramInfo& shaderInfo) in operator <<() argument
33 log << tcu::TestLog::ShaderProgram(shaderInfo.compileOk , shaderInfo.infoLog) in operator <<()
34 << tcu::TestLog::SpirVAssemblySource(shaderInfo.source) in operator <<()
40 "ms", QP_KEY_TAG_TIME, (float)shaderInfo.compileTimeUs / 1000.0f); in operator <<()
H A DvkSpirVProgram.hpp106 tcu::TestLog& operator<< (tcu::TestLog& log, const SpirVProgramInfo& shaderInfo);
H A DvkObjUtil.cpp482 bool isFragShaderInfo (const VkPipelineShaderStageCreateInfo& shaderInfo) in isFragShaderInfo() argument
484 return (shaderInfo.stage == VK_SHADER_STAGE_FRAGMENT_BIT); in isFragShaderInfo()
/third_party/vk-gl-cts/framework/opengl/
H A DgluShaderProgram.cpp609 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderInfo& shaderInfo) in operator <<() argument
611 return log << tcu::TestLog::Shader(getLogShaderType(shaderInfo.type), shaderInfo.source, shaderInfo.compileOk, shaderInfo.infoLog); in operator <<()
663 const ShaderInfo& shaderInfo = *shaderInfos[shaderNdx]; in logShaderProgram() local
665 log << tcu::TestLog::Float(s_compileTimeDesc[shaderInfo.type].name, in logShaderProgram()
666 s_compileTimeDesc[shaderInfo.type].description, in logShaderProgram()
667 "ms", QP_KEY_TAG_TIME, (float)shaderInfo.compileTimeUs / 1000.0f); in logShaderProgram()
669 allShadersOk = allShadersOk && shaderInfo in logShaderProgram()
[all...]
H A DgluShaderProgram.hpp224 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderInfo& shaderInfo);
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DShaderModule.cpp459 const auto& shaderInfo = shaderBindings.find(bindingInfo.binding); in GetBindGroupMinBufferSizes()
460 if (shaderInfo != shaderBindings.end()) { in GetBindGroupMinBufferSizes()
461 requiredBufferSizes[packedIdx] = shaderInfo->second.buffer.minBindingSize; in GetBindGroupMinBufferSizes()
479 const ShaderBindingInfo& shaderInfo) {
490 DAWN_INVALID_IF(layoutInfo.bindingType != shaderInfo.bindingType,
503 layoutInfo.texture.multisampled != shaderInfo.texture.multisampled,
506 layoutInfo.texture.multisampled, shaderInfo.texture.multisampled);
510 shaderInfo.texture.compatibleSampleTypes) == 0,
515 layoutInfo.texture.viewDimension != shaderInfo.texture.viewDimension,
518 layoutInfo.texture.viewDimension, shaderInfo
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
H A DvktBuildPrograms.cpp224 const glu::ShaderInfo& shaderInfo = buildInfo.shaders[shaderNdx]; in writeBuildLogs() local
225 const char* const shaderName = getShaderTypeName(shaderInfo.type); in writeBuildLogs()
229 << shaderInfo.source << "\n" in writeBuildLogs()
233 << shaderInfo.infoLog << "\n" in writeBuildLogs()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/
H A DvktBuildPrograms.cpp224 const glu::ShaderInfo& shaderInfo = buildInfo.shaders[shaderNdx]; in writeBuildLogs() local
225 const char* const shaderName = getShaderTypeName(shaderInfo.type); in writeBuildLogs()
229 << shaderInfo.source << "\n" in writeBuildLogs()
233 << shaderInfo.infoLog << "\n" in writeBuildLogs()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
H A DvktRayQueryBarycentricCoordinatesTests.cpp309 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
324 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in iterate()
H A DvktRayQueryDirectionTests.cpp417 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
432 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in iterate()
H A DvktRayQueryPositionFetchTests.cpp602 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
617 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in iterate()
H A DvktRayQueryOpacityMicromapTests.cpp959 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
974 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/
H A DvktRayQueryBarycentricCoordinatesTests.cpp309 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
324 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in iterate()
H A DvktRayQueryDirectionTests.cpp417 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
432 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in iterate()
H A DvktRayQueryOpacityMicromapTests.cpp927 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
942 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp122 const VkPipelineShaderStageCreateInfo shaderInfo = local
138 shaderInfo,
1311 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
1327 shaderInfo, in iterate()
H A DvktComputeWorkgroupMemoryExplicitLayoutTests.cpp189 const VkPipelineShaderStageCreateInfo shaderInfo = in runCompute() local
205 shaderInfo, in runCompute()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DProgramExecutableVk.h73 const ShaderInfo &shaderInfo,
H A DProgramExecutableVk.cpp198 const ShaderInfo &shaderInfo, in initProgram()
202 const gl::ShaderMap<angle::spirv::Blob> &originalSpirvBlobs = shaderInfo.getSpirvBlobs(); in initProgram()
194 initProgram(ContextVk *contextVk, const gl::ShaderType shaderType, bool isLastPreFragmentStage, bool isTransformFeedbackProgram, const ShaderInfo &shaderInfo, ProgramTransformOptions optionBits, const ShaderInterfaceVariableInfoMap &variableInfoMap) initProgram() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp1311 const VkPipelineShaderStageCreateInfo shaderInfo = in iterate() local
1327 shaderInfo, in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiPipelineTests.cpp1387 const VkPipelineShaderStageCreateInfo shaderInfo = in destroyEarlyTest() local
1402 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in destroyEarlyTest()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiPipelineTests.cpp1387 const VkPipelineShaderStageCreateInfo shaderInfo = in destroyEarlyTest() local
1402 shaderInfo, // VkPipelineShaderStageCreateInfo stage; in destroyEarlyTest()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fFboSRGBWriteControlTests.cpp767 glu::ShaderInfo shaderInfo = m_referenceSource->getShaderInfo(static_cast<glu::ShaderType>(static_cast<int>(glu::SHADERTYPE_VERTEX) + static_cast<int>(shaderIdx)), 0); in getLogInfo() local
768 buildInfo.shaders.push_back(shaderInfo); in getLogInfo()
H A Des31fSRGBDecodeTests.cpp663 glu::ShaderInfo shaderInfo = m_program->getShaderInfo(static_cast<glu::ShaderType>(static_cast<int>(glu::SHADERTYPE_VERTEX) + static_cast<int>(shaderIdx)), 0); in SRGBTestProgram() local
664 buildInfo.shaders.push_back(shaderInfo); in SRGBTestProgram()

Completed in 39 milliseconds