intel/aub_viewer: drop bogus check
authorMarcin Ślusarz <marcin.slusarz@intel.com>
Fri, 19 Mar 2021 10:32:46 +0000 (11:32 +0100)
committerMarge Bot <eric+marge@anholt.net>
Mon, 22 Mar 2021 08:36:55 +0000 (08:36 +0000)
state_addr == bo.addr, bo.size==0 is handled by another check

Signed-off-by: Marcin Ślusarz <marcin.slusarz@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9707>

src/intel/tools/aubinator_viewer_decoder.cpp

index 60b76c2..b3bd7dd 100644 (file)
@@ -265,7 +265,7 @@ dump_samplers(struct aub_viewer_decode_ctx *ctx, uint32_t offset, int count)
       return;
    }
 
-   if (offset % 32 != 0 || state_addr - bo.addr >= bo.size) {
+   if (offset % 32 != 0) {
       ImGui::TextColored(ctx->cfg->missing_color, "invalid sampler state pointer");
       return;
    }