diff options
author | Alejandro Piñeiro <[email protected]> | 2015-12-05 20:46:30 +0100 |
---|---|---|
committer | Alejandro Piñeiro <[email protected]> | 2015-12-07 20:30:24 +0100 |
commit | b16e0ff34e7824bb7f44e7afb78334fcfb0f7264 (patch) | |
tree | 3a08a93bb94328dfa8aec6641dfda07dff3000f0 /src/mesa | |
parent | db072d20867426958153279575dfdc2049b5f595 (diff) |
i965: use _mesa_is_array_texture instead of _mesa_tex_target_is_array
Both methods provide the same functionality, so one would be
removed.
v2: use _mesa_is_array_texture and not the other way (Brian Paul)
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen7_wm_surface_state.c | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/gen8_surface_state.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c index 2aa395b2a92..79182560a3d 100644 --- a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c +++ b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c @@ -500,7 +500,7 @@ gen7_update_renderbuffer_surface(struct brw_context *brw, /* fallthrough */ default: surftype = translate_tex_target(gl_target); - is_array = _mesa_tex_target_is_array(gl_target); + is_array = _mesa_is_array_texture(gl_target); break; } diff --git a/src/mesa/drivers/dri/i965/gen8_surface_state.c b/src/mesa/drivers/dri/i965/gen8_surface_state.c index 80252a50433..85e1285459c 100644 --- a/src/mesa/drivers/dri/i965/gen8_surface_state.c +++ b/src/mesa/drivers/dri/i965/gen8_surface_state.c @@ -452,7 +452,7 @@ gen8_update_renderbuffer_surface(struct brw_context *brw, /* fallthrough */ default: surf_type = translate_tex_target(gl_target); - is_array = _mesa_tex_target_is_array(gl_target); + is_array = _mesa_is_array_texture(gl_target); break; } |