mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
i965: Rename brw_format variable names to isl_format
This patch makes non functional changes. Renaming is just to make the code more readable. V2: update the types to "enum isl_format" Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Chad Versace <chadversary@chromium.org>
This commit is contained in:
parent
7a4964ec5c
commit
adb449694a
3 changed files with 9 additions and 7 deletions
|
|
@ -205,9 +205,10 @@ intel_texture_view_requires_resolve(struct brw_context *brw,
|
|||
!intel_miptree_is_lossless_compressed(brw, intel_tex->mt))
|
||||
return false;
|
||||
|
||||
const uint32_t brw_format = brw_isl_format_for_mesa_format(intel_tex->_Format);
|
||||
const enum isl_format isl_format =
|
||||
brw_isl_format_for_mesa_format(intel_tex->_Format);
|
||||
|
||||
if (isl_format_supports_ccs_e(&brw->screen->devinfo, brw_format))
|
||||
if (isl_format_supports_ccs_e(&brw->screen->devinfo, isl_format))
|
||||
return false;
|
||||
|
||||
perf_debug("Incompatible sampling format (%s) for rbc (%s)\n",
|
||||
|
|
|
|||
|
|
@ -686,7 +686,7 @@ brw_update_buffer_texture_surface(struct gl_context *ctx,
|
|||
uint32_t size = tObj->BufferSize;
|
||||
struct brw_bo *bo = NULL;
|
||||
mesa_format format = tObj->_BufferObjectFormat;
|
||||
uint32_t brw_format = brw_isl_format_for_mesa_format(format);
|
||||
const enum isl_format isl_format = brw_isl_format_for_mesa_format(format);
|
||||
int texel_size = _mesa_get_format_bytes(format);
|
||||
|
||||
if (intel_obj) {
|
||||
|
|
@ -712,14 +712,14 @@ brw_update_buffer_texture_surface(struct gl_context *ctx,
|
|||
*/
|
||||
size = MIN2(size, ctx->Const.MaxTextureBufferSize * (unsigned) texel_size);
|
||||
|
||||
if (brw_format == 0 && format != MESA_FORMAT_RGBA_FLOAT32) {
|
||||
if (isl_format == 0 && format != MESA_FORMAT_RGBA_FLOAT32) {
|
||||
_mesa_problem(NULL, "bad format %s for texture buffer\n",
|
||||
_mesa_get_format_name(format));
|
||||
}
|
||||
|
||||
brw_emit_buffer_surface_state(brw, surf_offset, bo,
|
||||
tObj->BufferOffset,
|
||||
brw_format,
|
||||
isl_format,
|
||||
size,
|
||||
texel_size,
|
||||
false /* rw */);
|
||||
|
|
|
|||
|
|
@ -209,8 +209,9 @@ intel_miptree_supports_non_msrt_fast_clear(struct brw_context *brw,
|
|||
|
||||
if (brw->gen >= 9) {
|
||||
mesa_format linear_format = _mesa_get_srgb_format_linear(mt->format);
|
||||
const uint32_t brw_format = brw_isl_format_for_mesa_format(linear_format);
|
||||
return isl_format_supports_ccs_e(&brw->screen->devinfo, brw_format);
|
||||
const enum isl_format isl_format =
|
||||
brw_isl_format_for_mesa_format(linear_format);
|
||||
return isl_format_supports_ccs_e(&brw->screen->devinfo, isl_format);
|
||||
} else
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue