Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo caused GS/VS definition on Group 25 test 1 #406

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2316,7 +2316,7 @@ tcu::TestNode::IterateResult GeometryShaderTransformFeedbackVertexAndGeometrySha
"layout (points) in;\n"
"layout (points, max_vertices = 1) out;\n"
"\n"
"in int vertexID;\n"
"flat in int vertexID[];\n"
"out vec4 out_gs_1;\n"
"\n"
"void main()\n"
Expand Down Expand Up @@ -2371,7 +2371,7 @@ tcu::TestNode::IterateResult GeometryShaderTransformFeedbackVertexAndGeometrySha
const char* fs_code_specialized_raw = fs_code_specialized.c_str();

std::string gs_code_specialized = specializeShader(1, &gs_code);
const char* gs_code_specialized_raw = fs_code_specialized.c_str();
const char* gs_code_specialized_raw = gs_code_specialized.c_str();

std::string vs_code_specialized = specializeShader(1, &vs_code);
const char* vs_code_specialized_raw = vs_code_specialized.c_str();
Expand Down