diff options
author | Brian <[email protected]> | 2007-06-15 10:50:48 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-06-15 10:50:48 -0600 |
commit | fde755aefb3559731a734110c7172badee9f14f9 (patch) | |
tree | 59ece56452acdd4dacb3ed0850b6cbbf2125dff2 | |
parent | 8f6b6eed35832733674372dea7bd5ce69a965c4e (diff) |
In softpipe_set_viewport() use ordinary (struct) assignment to update softpipe->viewport.
The previous memcpy() was incorrect since it only copied 4 bytes instead of 32.
With struct assignment we avoid data size errors.
-rw-r--r-- | src/mesa/pipe/softpipe/sp_state_clip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state_clip.c b/src/mesa/pipe/softpipe/sp_state_clip.c index 6e83b055fbc..4b83f2b07ef 100644 --- a/src/mesa/pipe/softpipe/sp_state_clip.c +++ b/src/mesa/pipe/softpipe/sp_state_clip.c @@ -56,7 +56,7 @@ void softpipe_set_viewport( struct pipe_context *pipe, { struct softpipe_context *softpipe = softpipe_context(pipe); - memcpy(&softpipe->viewport, viewport, sizeof(viewport)); + softpipe->viewport = *viewport; /* struct copy */ /* Using tnl/ and vf/ modules is temporary while getting started. * Full pipe will have vertex shader, vertex fetch of its own. |