st/mesa: use common patch outputs written field
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
@@ -6510,7 +6510,7 @@ get_mesa_program_tgsi(struct gl_context *ctx,
|
||||
&prog->info.patch_inputs_read);
|
||||
shrink_array_declarations(v->outputs, v->num_outputs,
|
||||
&prog->info.outputs_written, 0ULL,
|
||||
&prog->PatchOutputsWritten);
|
||||
&prog->info.patch_outputs_written);
|
||||
count_resources(v, prog);
|
||||
|
||||
/* The GLSL IR won't be needed anymore. */
|
||||
|
||||
@@ -1427,7 +1427,7 @@ st_translate_program_common(struct st_context *st,
|
||||
|
||||
/* Also add patch outputs. */
|
||||
for (attr = 0; attr < 32; attr++) {
|
||||
if (prog->PatchOutputsWritten & (1u << attr)) {
|
||||
if (prog->info.patch_outputs_written & (1u << attr)) {
|
||||
GLuint slot = num_outputs++;
|
||||
GLuint patch_attr = VARYING_SLOT_PATCH0 + attr;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user