panfrost: nr_mipmap_levels -> levels
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Tue, 20 Aug 2019 22:24:18 +0000 (15:24 -0700)
committerAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Wed, 21 Aug 2019 15:40:55 +0000 (08:40 -0700)
No need to be so verbose.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
src/gallium/drivers/panfrost/pan_context.c
src/panfrost/include/panfrost-job.h
src/panfrost/pandecode/decode.c

index e8411ced01444eb73142ce45bb5b93e59ac41ae1..1642bb436facdcb15372329fbe5ec15436ed3bba 100644 (file)
@@ -2316,7 +2316,7 @@ panfrost_create_sampler_view(
                 .swizzle = panfrost_translate_swizzle_4(user_swizzle)
         };
 
-        texture_descriptor.nr_mipmap_levels = last_level - first_level;
+        texture_descriptor.levels = last_level - first_level;
 
         so->hw = texture_descriptor;
 
index ffcfd67bab685b3a16d479aa6e5b07bfaf6f042d..43c7c3763d05a0dcf36f065945e0ff2e6ee8edf2 100644 (file)
@@ -1210,7 +1210,7 @@ struct mali_texture_descriptor {
         uint8_t unknown3A;
 
         /* Zero for non-mipmapped, (number of levels - 1) for mipmapped */
-        uint8_t nr_mipmap_levels;
+        uint8_t levels;
 
         /* Swizzling is a single 32-bit word, broken up here for convenience.
          * Here, swizzling refers to the ES 3.0 texture parameters for channel
index 3a32d25cabee8511fc14d57825d4a1bba18d9724..4ebab6d466f6a77ff283208ff715224ac4ae2c6d 100644 (file)
@@ -1790,9 +1790,10 @@ pandecode_texture(mali_ptr u,
         if (t->array_size)
                 pandecode_log_cont("[%u]", t->array_size + 1);
 
-        pandecode_log_cont("\n");
+        if (t->levels)
+                pandecode_log_cont(" mip %u", t->levels);
 
-        pandecode_prop("nr_mipmap_levels = %" PRId8, t->nr_mipmap_levels);
+        pandecode_log_cont("\n");
 
         pandecode_log(".format = {\n");
         pandecode_indent++;
@@ -1837,7 +1838,7 @@ pandecode_texture(mali_ptr u,
          * properties, but dump extra
          * possibilities to futureproof */
 
-        int bitmap_count = MALI_NEGATIVE(t->nr_mipmap_levels);
+        int bitmap_count = MALI_NEGATIVE(t->levels);
         bool manual_stride = f.usage2 & MALI_TEX_MANUAL_STRIDE;
 
         /* Miptree for each face */