diff options
author | Jakob Bornecrantz <[email protected]> | 2009-08-11 18:33:58 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-08-11 18:34:43 +0100 |
commit | a41a253ce3b667fc8ad1bfbafce9e3e633667383 (patch) | |
tree | 2a9b3c733bee3ef41bd1b13ddfabeaf2e3eaf81d /src/gallium/drivers/identity/id_screen.c | |
parent | 7013a4dfb84ce730f093600326fa158cdb1563ff (diff) |
gallium: Add texture usage information to surface_buffer_create
We need aditional meta data about the usage of the surface
in softpipe because we need to be able tell the diffrence
between PRIMARY and DISPLAY_TARGET surfaces.
Diffstat (limited to 'src/gallium/drivers/identity/id_screen.c')
-rw-r--r-- | src/gallium/drivers/identity/id_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/identity/id_screen.c b/src/gallium/drivers/identity/id_screen.c index 259f1be36e7..26439637d08 100644 --- a/src/gallium/drivers/identity/id_screen.c +++ b/src/gallium/drivers/identity/id_screen.c @@ -289,6 +289,7 @@ identity_screen_surface_buffer_create(struct pipe_screen *_screen, unsigned height, enum pipe_format format, unsigned usage, + unsigned tex_usage, unsigned *stride) { struct identity_screen *id_screen = identity_screen(_screen); @@ -300,6 +301,7 @@ identity_screen_surface_buffer_create(struct pipe_screen *_screen, height, format, usage, + tex_usage, stride); if (result) |