diff options
author | Kenneth Graunke <[email protected]> | 2017-12-10 17:03:32 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-12-30 20:30:34 -0800 |
commit | a1afef8de0118a5952e21fec7e017c905a59637f (patch) | |
tree | ccb64c03c180f8d85b375278b5d60d9bdd516abb /src/intel/compiler/brw_eu_defines.h | |
parent | ea0bbe82019458f3c0482a2d13614fdd06041ee3 (diff) |
i965: Combine {VS,FS}_OPCODE_GET_BUFFER_SIZE opcodes.
These are the same, we don't need a separate opcode enum per backend.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_eu_defines.h')
-rw-r--r-- | src/intel/compiler/brw_eu_defines.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/intel/compiler/brw_eu_defines.h b/src/intel/compiler/brw_eu_defines.h index 8ed97912b4d..30e2e8f0708 100644 --- a/src/intel/compiler/brw_eu_defines.h +++ b/src/intel/compiler/brw_eu_defines.h @@ -451,6 +451,8 @@ enum opcode { */ SHADER_OPCODE_BROADCAST, + SHADER_OPCODE_GET_BUFFER_SIZE, + VEC4_OPCODE_MOV_BYTES, VEC4_OPCODE_PACK_BYTES, VEC4_OPCODE_UNPACK_UNIFORM, @@ -479,7 +481,6 @@ enum opcode { FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN4, FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_GEN7, FS_OPCODE_VARYING_PULL_CONSTANT_LOAD_LOGICAL, - FS_OPCODE_GET_BUFFER_SIZE, FS_OPCODE_MOV_DISPATCH_TO_FLAGS, FS_OPCODE_DISCARD_JUMP, FS_OPCODE_SET_SAMPLE_ID, @@ -496,8 +497,6 @@ enum opcode { VS_OPCODE_PULL_CONSTANT_LOAD_GEN7, VS_OPCODE_SET_SIMD4X2_HEADER_GEN9, - VS_OPCODE_GET_BUFFER_SIZE, - VS_OPCODE_UNPACK_FLAGS_SIMD4X2, /** |