Home
last modified time | relevance | path

Searched refs:shaderBuildInfo (Results 1 – 2 of 2) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
DvkShaderToSpirV.cpp308 glu::ShaderInfo shaderBuildInfo; in compileShaderToSpirV() local
310 shaderBuildInfo.type = (glu::ShaderType)shaderType; in compileShaderToSpirV()
311 shaderBuildInfo.source = srcText; in compileShaderToSpirV()
312 shaderBuildInfo.infoLog = shader.getInfoLog(); // \todo [2015-07-13 pyry] Include debug log? in compileShaderToSpirV()
313 shaderBuildInfo.compileTimeUs = deGetMicroseconds()-compileStartTime; in compileShaderToSpirV()
314 shaderBuildInfo.compileOk = (compileRes != 0); in compileShaderToSpirV()
316 buildInfo->shaders.push_back(shaderBuildInfo); in compileShaderToSpirV()
DvkPrograms.cpp594 glu::ShaderInfo shaderBuildInfo; in buildProgram() local
596 shaderBuildInfo.type = (glu::ShaderType)shaderType; in buildProgram()
597 shaderBuildInfo.source = shaderstring; in buildProgram()
598 shaderBuildInfo.compileTimeUs = 0; in buildProgram()
599 shaderBuildInfo.compileOk = true; in buildProgram()
601 buildInfo->shaders.push_back(shaderBuildInfo); in buildProgram()
679 glu::ShaderInfo shaderBuildInfo; in buildProgram() local
681 shaderBuildInfo.type = (glu::ShaderType)shaderType; in buildProgram()
682 shaderBuildInfo.source = shaderstring; in buildProgram()
683 shaderBuildInfo.compileTimeUs = 0; in buildProgram()
[all …]