diff options
author | Brian Paul <[email protected]> | 2009-10-07 09:58:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-07 09:58:34 -0600 |
commit | 2ef1aae1633db98fc52f440ca33b8f2a6f153d45 (patch) | |
tree | 24fdb7226bf1412bbb914bf09f641fbeca84470f /src/mesa/state_tracker/st_format.h | |
parent | de81b2cf0a465e2c6c43c7f9f864129728b3a080 (diff) |
st/mesa: pass pipe_screen, not pipe_context to st_choose_format() functions
These don't depend on context state, but use a screen pointer.
Diffstat (limited to 'src/mesa/state_tracker/st_format.h')
-rw-r--r-- | src/mesa/state_tracker/st_format.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_format.h b/src/mesa/state_tracker/st_format.h index 9d9e02fe9b6..e4a788c89bb 100644 --- a/src/mesa/state_tracker/st_format.h +++ b/src/mesa/state_tracker/st_format.h @@ -64,11 +64,12 @@ st_mesa_format_to_pipe_format(GLuint mesaFormat); extern enum pipe_format -st_choose_format(struct pipe_context *pipe, GLenum internalFormat, +st_choose_format(struct pipe_screen *screen, GLenum internalFormat, enum pipe_texture_target target, unsigned tex_usage); extern enum pipe_format -st_choose_renderbuffer_format(struct pipe_context *pipe, GLenum internalFormat); +st_choose_renderbuffer_format(struct pipe_screen *screen, + GLenum internalFormat); extern const struct gl_texture_format * |