projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
006d02a
)
i915g: Fix copy pasto
author
Jakob Bornecrantz
<jakob@vmware.com>
Tue, 29 Jun 2010 11:36:40 +0000
(12:36 +0100)
committer
Jakob Bornecrantz
<jakob@vmware.com>
Tue, 29 Jun 2010 11:36:40 +0000
(12:36 +0100)
src/gallium/targets/egl/pipe_i915.c
patch
|
blob
|
history
diff --git
a/src/gallium/targets/egl/pipe_i915.c
b/src/gallium/targets/egl/pipe_i915.c
index 1df650c346603c785e02fd8fc5ef5295fd106b74..758a921b481bc83b2067e6c0c39b574c3453f486 100644
(file)
--- a/
src/gallium/targets/egl/pipe_i915.c
+++ b/
src/gallium/targets/egl/pipe_i915.c
@@
-8,14
+8,14
@@
static struct pipe_screen *
create_screen(int fd)
{
- struct
brw_winsys_screen *b
ws;
+ struct
i915_winsys *i
ws;
struct pipe_screen *screen;
-
bws = i915_drm_winsys_screen
_create(fd);
- if (!
b
ws)
+
iws = i915_drm_winsys
_create(fd);
+ if (!
i
ws)
return NULL;
- screen = i915_screen_create(
b
ws);
+ screen = i915_screen_create(
i
ws);
if (!screen)
return NULL;