summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/i915/i915_context.h
diff options
context:
space:
mode:
authorStéphane Marchesin <[email protected]>2011-12-15 12:59:58 -0800
committerStéphane Marchesin <[email protected]>2011-12-19 18:28:26 -0800
commita7534d8943d74e81299b2ee4edc462baac9d1331 (patch)
tree8756c9f991ec904dc39c4c51bd9b3046f299f2ae /src/gallium/drivers/i915/i915_context.h
parentc661843ab6adc97b54debaccfb29b897b12ab76d (diff)
i915g: Make the pipe_sampler_state struct non const and get rid of useless memcpy.
Diffstat (limited to 'src/gallium/drivers/i915/i915_context.h')
-rw-r--r--src/gallium/drivers/i915/i915_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_context.h b/src/gallium/drivers/i915/i915_context.h
index bb1b3b1608a..fb511853e72 100644
--- a/src/gallium/drivers/i915/i915_context.h
+++ b/src/gallium/drivers/i915/i915_context.h
@@ -202,7 +202,7 @@ struct i915_rasterizer_state {
};
struct i915_sampler_state {
- const struct pipe_sampler_state templ;
+ struct pipe_sampler_state templ;
unsigned state[3];
unsigned minlod;
unsigned maxlod;