mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 23:09:05 +02:00
r300: Added the vertex program src/dest register defines.
This commit is contained in:
parent
bccb56d5f3
commit
ea8299040f
1 changed files with 16 additions and 0 deletions
|
|
@ -2479,6 +2479,22 @@ enum {
|
|||
ME_PRED_SET_RESTORE = 28,
|
||||
};
|
||||
|
||||
enum {
|
||||
PVS_SRC_REG_TEMPORARY = 0, /* Intermediate Storage */
|
||||
PVS_SRC_REG_INPUT = 1, /* Input Vertex Storage */
|
||||
PVS_SRC_REG_CONSTANT = 2, /* Constant State Storage */
|
||||
PVS_SRC_REG_ALT_TEMPORARY = 3, /* Alternate Intermediate Storage */
|
||||
};
|
||||
|
||||
enum {
|
||||
PVS_DST_REG_TEMPORARY = 0, /* Intermediate Storage */
|
||||
PVS_DST_REG_A0 = 1, /* Address Register Storage */
|
||||
PVS_DST_REG_OUT = 2, /* Output Memory. Used for all outputs */
|
||||
PVS_DST_REG_OUT_REPL_X = 3, /* Output Memory & Replicate X to all channels */
|
||||
PVS_DST_REG_ALT_TEMPORARY = 4, /* Alternate Intermediate Storage */
|
||||
PVS_DST_REG_INPUT = 5, /* Output Memory & Replicate X to all channels */
|
||||
};
|
||||
|
||||
/*\}*/
|
||||
|
||||
/*\{*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue