Home
last modified time | relevance | path

Searched refs:compileStatus (Results 1 - 14 of 14) sorted by relevance

/third_party/vk-gl-cts/executor/
H A DxeTestCaseResult.hpp336 Shader (void) : Item(TYPE_SHADER), shaderType(SHADERTYPE_LAST), compileStatus(false) {} in Shader()
340 bool compileStatus; member in xe::ri::Shader
457 CompileInfo (void) : Item(TYPE_COMPILEINFO), compileStatus(false) {} in CompileInfo()
462 bool compileStatus; member in xe::ri::CompileInfo
H A DxeTestLogWriter.cpp317 << Writer::Attribute("CompileStatus", getStatusName(shader.compileStatus)); in writeResultItem()
377 << Writer::Attribute("CompileStatus", getStatusName(compileInfo.compileStatus)); in writeResultItem()
H A DxeTestResultParser.cpp573 shader->compileStatus = toBool(getAttribute("CompileStatus")); in handleElementStart()
614 info->compileStatus = toBool(getAttribute("CompileStatus")); in handleElementStart()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fNegativeShaderApiTests.cpp2353 void compile_compute_shader_helper (NegativeTestContext& ctx, const char* const* computeShaderSource, GLint* compileStatus) in compile_compute_shader_helper() argument
2357 *compileStatus = -1; in compile_compute_shader_helper()
2360 ctx.glGetShaderiv(shader, GL_COMPILE_STATUS, compileStatus); in compile_compute_shader_helper()
2366 GLint compileStatus; in compile_compute_shader() local
2375 compile_compute_shader_helper(ctx, &computeShaderSource, &compileStatus); in compile_compute_shader()
2376 if (compileStatus != GL_FALSE) in compile_compute_shader()
2386 compile_compute_shader_helper(ctx, &computeShaderSource, &compileStatus); in compile_compute_shader()
2387 if (compileStatus != GL_FALSE) in compile_compute_shader()
2398 compile_compute_shader_helper(ctx, &computeShaderSource, &compileStatus); in compile_compute_shader()
2399 if (compileStatus ! in compile_compute_shader()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DPipelineGL.cpp62 GLint compileStatus = GL_FALSE; in InitializeBase()
63 gl.GetShaderiv(shader, GL_COMPILE_STATUS, &compileStatus); in InitializeBase()
64 if (compileStatus == GL_FALSE) { in InitializeBase()
/third_party/vk-gl-cts/framework/opengl/
H A DgluShaderProgram.cpp94 int compileStatus = 0; in compile() local
96 m_gl.getShaderiv(m_shader, GL_COMPILE_STATUS, &compileStatus); in compile()
99 m_info.compileOk = compileStatus != GL_FALSE; in compile()
152 int compileStatus = 0; in specialize() local
154 m_gl.getShaderiv(m_shader, GL_COMPILE_STATUS, &compileStatus); in specialize()
157 m_info.compileOk = compileStatus != GL_FALSE; in specialize()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fBooleanStateQueryTests.cpp592 GLint compileStatus; in test() local
593 glGetShaderiv(shaderVert, GL_COMPILE_STATUS, &compileStatus); in test()
594 checkBooleans(compileStatus, GL_TRUE); in test()
600 glGetShaderiv(shaderFrag, GL_COMPILE_STATUS, &compileStatus); in test()
601 checkBooleans(compileStatus, GL_TRUE); in test()
H A Des3fIntegerStateQueryTests.cpp1974 GLint compileStatus = -1; in test() local
1981 gl.glGetShaderiv(shaderVert, GL_COMPILE_STATUS, &compileStatus); in test()
1982 if (compileStatus != GL_TRUE) in test()
1988 GLint compileStatus = -1; in test() local
1995 gl.glGetShaderiv(shaderFrag, GL_COMPILE_STATUS, &compileStatus); in test()
1996 if (compileStatus != GL_TRUE) in test()
2080 GLint compileStatus = -1; in test() local
2087 gl.glGetShaderiv(shaderVert, GL_COMPILE_STATUS, &compileStatus); in test()
2088 if (compileStatus != GL_TRUE) in test()
2094 GLint compileStatus in test() local
[all...]
H A Des3fShaderApiTests.cpp158 int compileStatus = 0; in queryShaderInfo() local
163 gl.getShaderiv(shader, GL_COMPILE_STATUS, &compileStatus); in queryShaderInfo()
168 info.compileOk = compileStatus != GL_FALSE; in queryShaderInfo()
414 GLint compileStatus = -1; in checkCompileStatus() local
415 glGetShaderiv(shaderObject, GL_COMPILE_STATUS, &compileStatus); in checkCompileStatus()
418 return (compileStatus == GL_TRUE); in checkCompileStatus()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderApiTests.cpp141 int compileStatus = 0; in queryShaderInfo() local
146 gl.getShaderiv(shader, GL_COMPILE_STATUS, &compileStatus); in queryShaderInfo()
151 info.compileOk = compileStatus != GL_FALSE; in queryShaderInfo()
360 GLint compileStatus = -1; in checkCompileStatus() local
361 glGetShaderiv(shaderObject, GL_COMPILE_STATUS, &compileStatus); in checkCompileStatus()
364 return (compileStatus == GL_TRUE); in checkCompileStatus()
H A Des2fIntegerStateQueryTests.cpp1645 GLint compileStatus; in test() local
1661 gl.glGetShaderiv(shaderVert, GL_COMPILE_STATUS, &compileStatus); in test()
1662 if (compileStatus != GL_TRUE) in test()
1673 gl.glGetShaderiv(shaderFrag, GL_COMPILE_STATUS, &compileStatus); in test()
1674 if (compileStatus != GL_TRUE) in test()
/third_party/skia/third_party/externals/swiftshader/tests/GLESUnitTests/
H A Dunittests.cpp245 GLint compileStatus = 0; in MakeShader() local
246 glGetShaderiv(shader, GL_COMPILE_STATUS, &compileStatus); in MakeShader()
248 EXPECT_EQ(compileStatus, GL_TRUE) << "Compile status: " << std::endl in MakeShader()
403 GLint compileStatus = 0; in checkCompileFails() local
416 glGetShaderiv(glShader, GL_COMPILE_STATUS, &compileStatus); in checkCompileFails()
417 EXPECT_EQ(compileStatus, GL_FALSE); in checkCompileFails()
/third_party/vk-gl-cts/modules/glshared/
H A DglsLifetimeTests.cpp598 GLint compileStatus = 0; in initAttachment() local
599 gl().getShaderiv(shader, GL_COMPILE_STATUS, &compileStatus); in initAttachment()
600 TCU_CHECK_MSG(compileStatus != 0, sourceStr); in initAttachment()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DBlitGL.cpp42 GLint compileStatus = GL_FALSE; in CheckCompileStatus() local
43 ANGLE_GL_TRY(context, functions->getShaderiv(shader, GL_COMPILE_STATUS, &compileStatus)); in CheckCompileStatus()
45 ASSERT(compileStatus == GL_TRUE); in CheckCompileStatus()
46 ANGLE_CHECK(GetImplAs<ContextGL>(context), compileStatus == GL_TRUE, in CheckCompileStatus()

Completed in 35 milliseconds