From b9d4c10e4b26b6bb6bd1365d3fc8b3c6288c8da7 Mon Sep 17 00:00:00 2001 From: Jonathan Marek Date: Thu, 19 Dec 2019 18:03:09 -0500 Subject: [PATCH] turnip: minor warning fixes Signed-off-by: Jonathan Marek Reviewed-by: Kristian H. Kristensen Tested-by: Marge Bot Part-of: --- src/freedreno/vulkan/tu_pass.c | 2 +- src/freedreno/vulkan/tu_pipeline.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/freedreno/vulkan/tu_pass.c b/src/freedreno/vulkan/tu_pass.c index f8a24fd85cf..72fe1bf06e6 100644 --- a/src/freedreno/vulkan/tu_pass.c +++ b/src/freedreno/vulkan/tu_pass.c @@ -61,7 +61,7 @@ compute_gmem_offsets(struct tu_render_pass *pass, uint32_t gmem_size) * result: nblocks = {12, 52}, pixels = 196608 * optimal: nblocks = {13, 51}, pixels = 208896 */ - uint32_t block_total = 0, gmem_blocks = gmem_size / GMEM_ALIGN; + uint32_t gmem_blocks = gmem_size / GMEM_ALIGN; uint32_t offset = 0, pixels = ~0u; for (uint32_t i = 0; i < pass->attachment_count; i++) { struct tu_render_pass_attachment *att = &pass->attachments[i]; diff --git a/src/freedreno/vulkan/tu_pipeline.c b/src/freedreno/vulkan/tu_pipeline.c index 0c84c567210..799b0b2a3de 100644 --- a/src/freedreno/vulkan/tu_pipeline.c +++ b/src/freedreno/vulkan/tu_pipeline.c @@ -874,7 +874,7 @@ tu6_emit_fs_outputs(struct tu_cs *cs, uint32_t gras_su_depth_plane_cntl = 0; uint32_t rb_depth_plane_cntl = 0; - if (fs->no_earlyz | fs->writes_pos) { + if (fs->no_earlyz || fs->writes_pos) { gras_su_depth_plane_cntl |= A6XX_GRAS_SU_DEPTH_PLANE_CNTL_FRAG_WRITES_Z; rb_depth_plane_cntl |= A6XX_RB_DEPTH_PLANE_CNTL_FRAG_WRITES_Z; } -- 2.30.2