diff options
author | Brian Paul <[email protected]> | 2011-10-04 14:45:13 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-04 15:04:41 -0600 |
commit | 334a9dd3e60e9c7b8ba7bcceb2c88c2645e6220b (patch) | |
tree | f841023e008353c0c18ab5800beb66da8ab5da79 /src/gallium/drivers/softpipe/sp_state_shader.c | |
parent | 35613afee3e038b70ada210b2dfbbc9abc883f4f (diff) |
softpipe: add check for DO_PSTIPPLE_IN_HELPER_MODULE
We only want to generate the fragment shader variant that does
stippling if DO_PSTIPPLE_IN_HELPER_MODULE is being used.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state_shader.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_shader.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_shader.c b/src/gallium/drivers/softpipe/sp_state_shader.c index d7d05990c07..3dd1f9eafae 100644 --- a/src/gallium/drivers/softpipe/sp_state_shader.c +++ b/src/gallium/drivers/softpipe/sp_state_shader.c @@ -55,12 +55,14 @@ create_fs_variant(struct softpipe_context *softpipe, struct pipe_shader_state *stipple_fs = NULL, *curfs = &fs->shader; unsigned unit = 0; +#if DO_PSTIPPLE_IN_HELPER_MODULE if (key->polygon_stipple) { /* get new shader that implements polygon stippling */ stipple_fs = util_pstipple_create_fragment_shader(&softpipe->pipe, curfs, &unit); curfs = stipple_fs; } +#endif /* codegen, create variant object */ var = softpipe_create_fs_variant_sse(softpipe, curfs); |