diff options
author | Timothy Arceri <[email protected]> | 2016-10-05 15:28:50 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-10-06 16:03:46 +1100 |
commit | 201f940d2e49d6ead5dfd6921b33bf6afefa4c68 (patch) | |
tree | 0f10c7fc3ca2b80fc33c083d1604909d05c36931 /src/mesa/program/program_parse.y | |
parent | 556335eb9915fc6e00aafa15eaf0265ddc25b131 (diff) |
mesa: remove the UsesDFdy flag
Seems the last user of this was removed in 08bc74e69.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/program/program_parse.y')
-rw-r--r-- | src/mesa/program/program_parse.y | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/program/program_parse.y b/src/mesa/program/program_parse.y index ad94fe032bc..fc8eed75593 100644 --- a/src/mesa/program/program_parse.y +++ b/src/mesa/program/program_parse.y @@ -388,8 +388,6 @@ ARL_instruction: ARL maskedAddrReg ',' scalarSrcReg VECTORop_instruction: VECTOR_OP maskedDstReg ',' swizzleSrcReg { - if ($1.Opcode == OPCODE_DDY) - state->fragment.UsesDFdy = 1; $$ = asm_instruction_copy_ctor(& $1, & $2, & $4, NULL, NULL); } ; |