From 4782bebe4495fb880c42bc1414aeed08c0ebf75d Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Thu, 4 Jun 2009 15:30:37 -0400 Subject: use the float interface for viewport updates --- src/mesa/drivers/dri/r600/r700_state.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/mesa/drivers') diff --git a/src/mesa/drivers/dri/r600/r700_state.c b/src/mesa/drivers/dri/r600/r700_state.c index 59f6d12651..fb8388f09d 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; } -- cgit v1.2.3