diff options
author | Brian Paul <[email protected]> | 2008-11-07 09:41:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-11-07 09:51:25 -0700 |
commit | 65cb74ecc0287d766493fd3649295e2e1b20099b (patch) | |
tree | d277ee691c80a00d96b399090806f2ac86718e06 /src/mesa/shader/prog_instruction.h | |
parent | 37eef7b474c5d9a7c566f9edf35c797c5a98d065 (diff) |
mesa: added DP2, DP2A instructions
Diffstat (limited to 'src/mesa/shader/prog_instruction.h')
-rw-r--r-- | src/mesa/shader/prog_instruction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/shader/prog_instruction.h b/src/mesa/shader/prog_instruction.h index 2cb2014cd48..855a80e2424 100644 --- a/src/mesa/shader/prog_instruction.h +++ b/src/mesa/shader/prog_instruction.h @@ -160,6 +160,8 @@ typedef enum prog_opcode { OPCODE_COS, /* X 2 X X */ OPCODE_DDX, /* X X */ OPCODE_DDY, /* X X */ + OPCODE_DP2, /* 2 */ + OPCODE_DP2A, /* 2 */ OPCODE_DP3, /* X X X X X */ OPCODE_DP4, /* X X X X X */ OPCODE_DPH, /* X X 1.1 */ |