diff options
author | Brian Paul <[email protected]> | 2009-10-21 20:00:43 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-21 20:00:43 -0600 |
commit | 4bd70b5cff13039a4b0e0c554156fec06e3c3906 (patch) | |
tree | a3492ab84b8aa0962c981d818806c35fc5447f0f /src | |
parent | c55b355fd460453a459e073ac4119c69e06e7531 (diff) |
i965: change parameter type to gl_format
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm_surface_state.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c index ea559d2ac73..5d8bb7a14be 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c +++ b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c @@ -69,7 +69,8 @@ static GLuint translate_tex_target( GLenum target ) } -static GLuint translate_tex_format( GLuint mesa_format, GLenum internal_format, +static GLuint translate_tex_format( gl_format mesa_format, + GLenum internal_format, GLenum depth_mode ) { switch( mesa_format ) { |