added Sampler field to prog_instruction struct
authorBrian <brian@yutani.localnet.net>
Fri, 5 Jan 2007 23:01:26 +0000 (16:01 -0700)
committerBrian <brian@yutani.localnet.net>
Fri, 5 Jan 2007 23:01:26 +0000 (16:01 -0700)
src/mesa/shader/prog_instruction.h

index bda6a2c..d825e6e 100644 (file)
@@ -379,6 +379,12 @@ struct prog_instruction
     */
    GLuint BranchTarget;
 
+   /**
+    * For TEX instructions in shaders, the sampler to use for the
+    * texture lookup.
+    */
+   GLint Sampler;
+
    const char *Comment;
 };