summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/python
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2010-02-14 03:16:00 +0100
committerMarek Olšák <maraeo@gmail.com>2010-02-14 03:20:09 +0100
commit260ec80f11561f2f9dbb2000d3e72b54b0fe91a5 (patch)
treeb6b00e2555ff9d04d907237479c371a1c46d5798 /src/gallium/state_trackers/python
parent804a6d6a684e2a95e8b84c723a4096243c4fde1a (diff)
st/python: fix build error after gallium-screen-context merge
Diffstat (limited to 'src/gallium/state_trackers/python')
-rw-r--r--src/gallium/state_trackers/python/st_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/python/st_device.c b/src/gallium/state_trackers/python/st_device.c
index 1146a8b0c3..a3798a5521 100644
--- a/src/gallium/state_trackers/python/st_device.c
+++ b/src/gallium/state_trackers/python/st_device.c
@@ -157,7 +157,7 @@ st_context_create(struct st_device *st_dev)
st_device_reference(&st_ctx->st_dev, st_dev);
- st_ctx->pipe = st_dev->screen->create_context(st_dev->screen, NULL);
+ st_ctx->pipe = st_dev->screen->context_create(st_dev->screen, NULL);
if(!st_ctx->pipe) {
st_context_destroy(st_ctx);
return NULL;