Lines Matching defs:source
1932 /* Preparing source code. */
2391 /* Preparing source code. */
2392 std::string vertex_shader(s_vertex_shader_source_code_template); /* Storage for vertex shader source code. */
2442 /* Preprocess vertex shader source code template. */
2942 /* Preparing source code. */
2943 std::string geometry_shader(s_geometry_shader_source_code_template); /* Storage for vertex shader source code. */
2999 /* Preprocess vertex shader source code template. */
3515 /* Preparing source code. */
3553 /* Preprocess vertex shader source code template. */
6691 glw::GLchar const* const source;
6712 if (DE_NULL != shader[i].source)
6722 gl.shaderSource(shader[i].id, 1, &(shader[i].source), NULL);
6749 << "Shader source code:\n"
6750 << shader[i].source << "\n"
6844 /** @brief Substitute key with value within source code.
6846 * @param [in] source Source code to be prerocessed.
6852 std::string gl3cts::TransformFeedback::Utilities::preprocessCode(std::string source, std::string key, std::string value)
6854 std::string destination = source;
6858 /* Find token in source code. */