From 5346630593bec80efa732c40b63e0e95a00af074 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Thu, 20 Oct 2016 15:27:35 +1100 Subject: r200/glsl/st/mesa: use common outputs written field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit And set outputs written directly in shader_info. st/mesa changes where: Reviewed-by: Marek Olšák Reviewed-by: Jason Ekstrand --- src/mesa/program/program_parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/program/program_parse.y') diff --git a/src/mesa/program/program_parse.y b/src/mesa/program/program_parse.y index 2210c0ce8a8..41aeb241ffe 100644 --- a/src/mesa/program/program_parse.y +++ b/src/mesa/program/program_parse.y @@ -594,7 +594,7 @@ maskedDstReg: dstReg optionalMask YYERROR; } - state->prog->OutputsWritten |= BITFIELD64_BIT($$.Index); + state->prog->info.outputs_written |= BITFIELD64_BIT($$.Index); } } ; -- cgit v1.2.3