diff options
Diffstat (limited to 'src/compiler/shader_info.h')
-rw-r--r-- | src/compiler/shader_info.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/compiler/shader_info.h b/src/compiler/shader_info.h index 1dd687e9b89..a67084156dd 100644 --- a/src/compiler/shader_info.h +++ b/src/compiler/shader_info.h @@ -142,18 +142,17 @@ typedef struct shader_info { unsigned shared_size; } cs; + /* Applies to both TCS and TES. */ struct { /** The number of vertices in the TCS output patch. */ - unsigned vertices_out; - } tcs; + unsigned tcs_vertices_out; - struct { uint32_t primitive_mode; /* GL_TRIANGLES, GL_QUADS or GL_ISOLINES */ enum gl_tess_spacing spacing; /** Is the vertex order counterclockwise? */ bool ccw; bool point_mode; - } tes; + } tess; }; } shader_info; |