diff options
author | Keith Whitwell <keithw@vmware.com> | 2010-03-14 18:38:08 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2010-03-14 18:38:08 +0000 |
commit | 087fb54492fa5e3baf040c5efbf7dacd98a8849b (patch) | |
tree | 2dd508c42698a63848c6fd3acb81ff4e4b39f1ef /src/gallium/drivers | |
parent | cfc9dd707d16e06fd23b6926da3a6e2269f31dc8 (diff) |
brw: fix function name
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/i965/brw_resource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_resource.c b/src/gallium/drivers/i965/brw_resource.c index 234300ff12..d601f42dd1 100644 --- a/src/gallium/drivers/i965/brw_resource.c +++ b/src/gallium/drivers/i965/brw_resource.c @@ -24,7 +24,7 @@ brw_resource_from_handle(struct pipe_screen * screen, if (template->target == PIPE_BUFFER) return NULL; else - return brw_resource_from_handle(screen, template, whandle); + return brw_texture_from_handle(screen, template, whandle); } |