summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-06-04 15:30:37 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-06-04 15:30:37 -0400
commit4782bebe4495fb880c42bc1414aeed08c0ebf75d (patch)
tree644d049d89368d09e466fd32b6de62efe0260e7e
parente355f1d64216fc999e2b18bd8c6ffdea29e8a36a (diff)
use the float interface for viewport updates
-rw-r--r--src/mesa/drivers/dri/r600/r700_state.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/r600/r700_state.c b/src/mesa/drivers/dri/r600/r700_state.c
index 59f6d126511..fb8388f09d2 100644
--- a/src/mesa/drivers/dri/r600/r700_state.c
+++ b/src/mesa/drivers/dri/r600/r700_state.c
@@ -552,14 +552,14 @@ static void r700UpdateWindow(GLcontext * ctx) //--------------------
/* TODO : Need DMA flush as well. */
- r700->PA_CL_VPORT_XSCALE.u32All = *((unsigned int*)(&sx));
- r700->PA_CL_VPORT_XOFFSET.u32All = *((unsigned int*)(&tx));
+ r700->PA_CL_VPORT_XSCALE.f32All = sx;
+ r700->PA_CL_VPORT_XOFFSET.f32All = tx;
- r700->PA_CL_VPORT_YSCALE.u32All = *((unsigned int*)(&sy));
- r700->PA_CL_VPORT_YOFFSET.u32All = *((unsigned int*)(&ty));
+ r700->PA_CL_VPORT_YSCALE.f32All = sy;
+ r700->PA_CL_VPORT_YOFFSET.f32All = ty;
- r700->PA_CL_VPORT_ZSCALE.u32All = *((unsigned int*)(&sz));
- r700->PA_CL_VPORT_ZOFFSET.u32All = *((unsigned int*)(&tz));
+ r700->PA_CL_VPORT_ZSCALE.f32All = sz;
+ r700->PA_CL_VPORT_ZOFFSET.f32All = tz;
}