diff options
author | Brian Paul <[email protected]> | 2008-04-04 11:20:44 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-04-04 11:20:44 -0600 |
commit | 72f2c55069f167a46560005931382e3b472f92ed (patch) | |
tree | 44627d1e5bad778086872a1def2817b4bcb78877 /src/mesa/state_tracker/st_cb_bitmap.c | |
parent | 84501e68f6294370d6f2f6aec4e7eab57bcc0e72 (diff) |
gallium: make sure to set the SamplersUsed field for bitmap/drawpixels shaders
Also, make sure that field is copied/updated in the program clone and combine functions.
Without this we weren't getting SAMP declarations in the TGSI shaders.
Diffstat (limited to 'src/mesa/state_tracker/st_cb_bitmap.c')
-rw-r--r-- | src/mesa/state_tracker/st_cb_bitmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_bitmap.c b/src/mesa/state_tracker/st_cb_bitmap.c index 0872f2bd28a..59f3c385df3 100644 --- a/src/mesa/state_tracker/st_cb_bitmap.c +++ b/src/mesa/state_tracker/st_cb_bitmap.c @@ -148,6 +148,7 @@ make_bitmap_fragment_program(GLcontext *ctx) p->InputsRead = FRAG_BIT_TEX0; p->OutputsWritten = 0x0; + p->SamplersUsed = 0x1; /* sampler 0 (bit 0) is used */ stfp = (struct st_fragment_program *) p; stfp->Base.UsesKill = GL_TRUE; |