summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_wm_sampler_state.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-11-01 15:59:21 +0000
committerKeith Whitwell <keithw@vmware.com>2009-11-01 15:59:21 +0000
commit6981bbfabeeaf60111d737dd0d5a93496fd16758 (patch)
tree78fe2f09a69d5270e2c6f805f43197951007c744 /src/gallium/drivers/i965/brw_wm_sampler_state.c
parent15e7a3b8bb6771d24e5bde7805ea394f9ce0a3ec (diff)
i965g: more files compiling
Diffstat (limited to 'src/gallium/drivers/i965/brw_wm_sampler_state.c')
-rw-r--r--src/gallium/drivers/i965/brw_wm_sampler_state.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/i965/brw_wm_sampler_state.c b/src/gallium/drivers/i965/brw_wm_sampler_state.c
index 55698a58bb..ddd88d6e22 100644
--- a/src/gallium/drivers/i965/brw_wm_sampler_state.c
+++ b/src/gallium/drivers/i965/brw_wm_sampler_state.c
@@ -126,10 +126,10 @@ brw_wm_sampler_update_default_colors(struct brw_context *brw)
if (pf_is_depth_or_stencil(tex->base.format)) {
float bordercolor[4] = {
- sampler->templ.border_color[0],
- sampler->templ.border_color[0],
- sampler->templ.border_color[0],
- sampler->templ.border_color[0]
+ sampler->border_color[0],
+ sampler->border_color[0],
+ sampler->border_color[0],
+ sampler->border_color[0]
};
/* GL specs that border color for depth textures is taken from the
* R channel, while the hardware uses A. Spam R into all the
@@ -137,7 +137,7 @@ brw_wm_sampler_update_default_colors(struct brw_context *brw)
*/
brw->wm.sdc_bo[i] = upload_default_color(brw, bordercolor);
} else {
- brw->wm.sdc_bo[i] = upload_default_color(brw, sampler->templ.border_color);
+ brw->wm.sdc_bo[i] = upload_default_color(brw, sampler->border_color);
}
}
}