summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/python/p_state.i
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-02-25 14:21:50 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-02-25 16:16:25 +0000
commitaec4d225b28bfb97aa04845fe038b37e4ffad240 (patch)
tree0386d8c885de309ea34ea6348f2dab11abebaf8a /src/gallium/state_trackers/python/p_state.i
parentfec2a67e405607b8527261add7e5842e9a75c921 (diff)
python: Fix typo.
Diffstat (limited to 'src/gallium/state_trackers/python/p_state.i')
-rw-r--r--src/gallium/state_trackers/python/p_state.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/python/p_state.i b/src/gallium/state_trackers/python/p_state.i
index 5afe4d49082..eda77b56f8e 100644
--- a/src/gallium/state_trackers/python/p_state.i
+++ b/src/gallium/state_trackers/python/p_state.i
@@ -69,7 +69,7 @@
pipe_blend_state(const char *STRING, unsigned LENGTH)
{
struct pipe_blend_state *state;
- state = CALLOC_STRUCT(pipe_framebuffer_state);
+ state = CALLOC_STRUCT(pipe_blend_state);
if (state) {
LENGTH = MIN2(sizeof *state, LENGTH);
memcpy(state, STRING, LENGTH);