Lines Matching defs:source
1111 * \param source Shader source
1115 deBool qpTestLog_writeShader (qpTestLog* log, qpShaderType type, const char* source, deBool compileOk, const char* infoLog)
1118 const char* sourceStr = ((log->flags & QP_TEST_LOG_EXCLUDE_SHADER_SOURCES) == 0 || !compileOk) ? source : "";
1124 DE_ASSERT(source);
1308 * \brief Write OpenCL compute kernel source into the log.
1310 deBool qpTestLog_writeKernelSource (qpTestLog* log, const char* source)
1312 const char* sourceStr = (log->flags & QP_TEST_LOG_EXCLUDE_SHADER_SOURCES) != 0 ? "" : source;
1329 * \brief Write a SPIR-V module assembly source into the log.
1331 deBool qpTestLog_writeSpirVAssemblySource (qpTestLog* log, const char* source)
1333 const char* const sourceStr = (log->flags & QP_TEST_LOG_EXCLUDE_SHADER_SOURCES) != 0 ? "" : source;