Displaying 1 result from an estimated 1 matches for "d6a7c76".
Did you mean:
668a7c76
2009 May 08
0
[PATCH] gallium/nv50: fix multi-texturing
...6ac6f3d3b7c2627595b09c20d419ca
Author: chr <chr at LAPTOP.(none)>
Date: Fri May 8 18:48:45 2009 +0200
nv50: Fix multi-texturing.
We need to bind textures to sampler units.
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h
index 7b67a75..d6a7c76 100644
--- a/src/gallium/drivers/nv50/nv50_context.h
+++ b/src/gallium/drivers/nv50/nv50_context.h
@@ -151,6 +151,7 @@ struct nv50_context {
unsigned sampler_nr;
struct nv50_miptree *miptree[PIPE_MAX_SAMPLERS];
unsigned miptree_nr;
+ unsigned texbind_nr;
};
static INLINE struct nv50_contex...