summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv50/nv50_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_state.h')
-rw-r--r--src/gallium/drivers/nv50/nv50_state.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_state.h b/src/gallium/drivers/nv50/nv50_state.h
index a3b781d4c6..be0c75ad6e 100644
--- a/src/gallium/drivers/nv50/nv50_state.h
+++ b/src/gallium/drivers/nv50/nv50_state.h
@@ -2,6 +2,36 @@
#define __NV50_STATE_H__
#include "pipe/p_state.h"
+#include "tgsi/util/tgsi_scan.h"
+struct nv50_program_data {
+ int index;
+ int component;
+ float value;
+};
+
+struct nv50_program {
+ struct pipe_shader_state pipe;
+ struct tgsi_shader_info info;
+ boolean translated;
+
+ unsigned *insns;
+ unsigned insns_nr;
+
+ struct pipe_buffer *buffer;
+
+ unsigned param_nr;
+ float *immd;
+ unsigned immd_nr;
+
+ struct nouveau_resource *data;
+
+ union {
+ struct {
+ unsigned high_temp;
+ unsigned attr[2];
+ } vp;
+ } cfg;
+};
#endif