Skip to content

Commit

Permalink
remove GL_ARB_separate_shader_objects #include from templates
Browse files Browse the repository at this point in the history
this is not needed for compiling for Vulkan
  • Loading branch information
martty authored Aug 23, 2022
1 parent 5fada91 commit 4d20c0e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions source/radeon_gpu_analyzer_gui/rg_data_types_vulkan.h
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,6 @@ static const char* kStrNewFileTemplateCodeVulkanGlslVertexShader =
"#version 450\n"
"\n"
"#extension GL_GOOGLE_include_directive : require\n"
"#extension GL_ARB_separate_shader_objects : enable\n"
"\n"
"out gl_PerVertex\n"
"{\n"
Expand All @@ -603,7 +602,6 @@ static const char* kStrNewFileTemplateCodeVulkanGlslGeometryShader =
"#version 450\n"
"\n"
"#extension GL_GOOGLE_include_directive : require\n"
"#extension GL_ARB_separate_shader_objects : enable\n"
"\n"
"layout (triangles) in;\n"
"layout (triangle_strip, max_vertices=3) out;\n"
Expand All @@ -625,7 +623,6 @@ static const char* kStrNewFileTemplateCodeVulkanGlslTessellationControlShader =
"#version 450\n"
"\n"
"#extension GL_GOOGLE_include_directive : require\n"
"#extension GL_ARB_separate_shader_objects : enable\n"
"\n"
"layout (vertices = 3) out;\n"
"\n"
Expand All @@ -640,7 +637,6 @@ static const char* kStrNewFileTemplateCodeVulkanGlslTessellationEvaluationShader
"#version 450\n"
"\n"
"#extension GL_GOOGLE_include_directive : require\n"
"#extension GL_ARB_separate_shader_objects : enable\n"
"\n"
"layout (triangles) in;\n"
"\n"
Expand All @@ -657,7 +653,6 @@ static const char* kStrNewFileTemplateCodeVulkanGlslFragmentShader =
"#version 450\n"
"\n"
"#extension GL_GOOGLE_include_directive : require\n"
"#extension GL_ARB_separate_shader_objects : enable\n"
"\n"
"layout(location = 0) in vec3 fragColor;\n"
"layout(location = 0) out vec4 outColor;\n"
Expand All @@ -673,7 +668,6 @@ static const char* kStrNewFileTemplateCodeVulkanGlslComputeShader =
"#version 450\n"
"\n"
"#extension GL_GOOGLE_include_directive : require\n"
"#extension GL_ARB_separate_shader_objects : enable\n"
"\n"
"void main()\n"
"{\n"
Expand Down

0 comments on commit 4d20c0e

Please sign in to comment.