diff options
author | Brian <[email protected]> | 2008-02-26 20:15:14 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-26 20:15:14 -0700 |
commit | aa59a937ccf41609081d3f9a4973df5478979785 (patch) | |
tree | ad3fce8490b1d5f701cca1db318f864c8950225a /src/gallium/drivers/i915simple/i915_texture.h | |
parent | dc2b6e2c33b44c1ffc0578b6bf52d05f7c68bb5c (diff) |
gallium: introduce 'pipe_screen' for context-independent functions
This will allow creating textures before a rendering context exists, for example.
Only implemented in i915 driver for now. i915pipe->texture_create() just
dispatches through to the i915screen->texture_create() to avoid state tracker
changes for now.
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_texture.h')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_texture.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915simple/i915_texture.h b/src/gallium/drivers/i915simple/i915_texture.h index 6d8d41178f7..7225016a9f4 100644 --- a/src/gallium/drivers/i915simple/i915_texture.h +++ b/src/gallium/drivers/i915simple/i915_texture.h @@ -28,11 +28,16 @@ #ifndef I915_TEXTURE_H #define I915_TEXTURE_H -struct pipe_context; +struct i915_context; +struct pipe_screen; extern void i915_init_texture_functions(struct i915_context *i915); +extern void +i915_init_screen_texture_functions(struct pipe_screen *screen); + + #endif /* I915_TEXTURE_H */ |