diff options
author | Dave Airlie <[email protected]> | 2015-03-20 16:26:59 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2015-03-21 08:14:05 +1000 |
commit | e17b0435c54bf14d9d1c9a9815814eb11fc66636 (patch) | |
tree | 1a0fbeae2ba726770a010b04330be760483e44de | |
parent | 401b11843b91112e2f5957c2b174b564cd1825b3 (diff) |
mesa: reorder prog_instruction
reduces size from 64 to 56 bytes.
Acked-by: Brian Paul <[email protected]>
Reviewed-by: Alex Deucher [email protected]>
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/mesa/program/prog_instruction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/program/prog_instruction.h b/src/mesa/program/prog_instruction.h index 0957bd9d779..ab3acbc02dd 100644 --- a/src/mesa/program/prog_instruction.h +++ b/src/mesa/program/prog_instruction.h @@ -366,11 +366,11 @@ struct prog_instruction */ GLint BranchTarget; - /** for debugging purposes */ - const char *Comment; - /** for driver use (try to remove someday) */ GLint Aux; + + /** for debugging purposes */ + const char *Comment; }; |