diff options
author | Marek Olšák <maraeo@gmail.com> | 2010-02-14 03:16:00 +0100 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2010-02-14 03:20:09 +0100 |
commit | 260ec80f11561f2f9dbb2000d3e72b54b0fe91a5 (patch) | |
tree | b6b00e2555ff9d04d907237479c371a1c46d5798 | |
parent | 804a6d6a684e2a95e8b84c723a4096243c4fde1a (diff) |
st/python: fix build error after gallium-screen-context merge
-rw-r--r-- | src/gallium/state_trackers/python/st_device.c | 2 |
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; |