diff options
author | Brian Paul <[email protected]> | 2010-09-23 19:16:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-09-24 09:48:32 -0600 |
commit | d1a4dd4217a4b8b018d4d9a161afece640d75694 (patch) | |
tree | a4ce8e0e63a5a16a14d0147a00123a7f67824041 /src/gallium/drivers/llvmpipe/lp_setup.c | |
parent | 61b7da074e2faebf03d3dfc30e910ee1367bcd5a (diff) |
llvmpipe: make texture border_color dynamic state
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c index 28d202bd655..eade4000873 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.c +++ b/src/gallium/drivers/llvmpipe/lp_setup.c @@ -643,6 +643,7 @@ lp_setup_set_fragment_sampler_views(struct lp_setup_context *setup, jit_tex->min_lod = samplers[i]->min_lod; jit_tex->max_lod = samplers[i]->max_lod; jit_tex->lod_bias = samplers[i]->lod_bias; + COPY_4V(jit_tex->border_color, samplers[i]->border_color); /* We're referencing the texture's internal data, so save a * reference to it. |