freedreno/a6xx: use point-coord helper
authorRob Clark <robdclark@chromium.org>
Mon, 22 Jun 2020 15:43:17 +0000 (08:43 -0700)
committerMarge Bot <eric+marge@anholt.net>
Wed, 24 Jun 2020 22:29:28 +0000 (22:29 +0000)
Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5595>

src/gallium/drivers/freedreno/a6xx/fd6_program.c

index 7b2ec2388c7891e02d94dfd1077bf39bb903896e..90bca744cc3656bd7e3b40f5ccffc1c87606445d 100644 (file)
@@ -923,40 +923,32 @@ emit_interp_state(struct fd_ringbuffer *ring, struct ir3_shader_variant *fs,
                        }
                }
 
-               gl_varying_slot slot = fs->inputs[j].slot;
-
-               /* since we don't enable PIPE_CAP_TGSI_TEXCOORD: */
-               if (slot >= VARYING_SLOT_VAR0) {
-                       unsigned texmask = 1 << (slot - VARYING_SLOT_VAR0);
-                       /* Replace the .xy coordinates with S/T from the point sprite. Set
-                        * interpolation bits for .zw such that they become .01
+               bool coord_mode = sprite_coord_mode;
+               if (ir3_point_sprite(fs, j, sprite_coord_enable, &coord_mode)) {
+                       /* mask is two 2-bit fields, where:
+                        *   '01' -> S
+                        *   '10' -> T
+                        *   '11' -> 1 - T  (flip mode)
                         */
-                       if (sprite_coord_enable & texmask) {
-                               /* mask is two 2-bit fields, where:
-                                *   '01' -> S
-                                *   '10' -> T
-                                *   '11' -> 1 - T  (flip mode)
-                                */
-                               unsigned mask = sprite_coord_mode ? 0b1101 : 0b1001;
-                               uint32_t loc = inloc;
-                               if (compmask & 0x1) {
-                                       vpsrepl[loc / 16] |= ((mask >> 0) & 0x3) << ((loc % 16) * 2);
-                                       loc++;
-                               }
-                               if (compmask & 0x2) {
-                                       vpsrepl[loc / 16] |= ((mask >> 2) & 0x3) << ((loc % 16) * 2);
-                                       loc++;
-                               }
-                               if (compmask & 0x4) {
-                                       /* .z <- 0.0f */
-                                       vinterp[loc / 16] |= 0b10 << ((loc % 16) * 2);
-                                       loc++;
-                               }
-                               if (compmask & 0x8) {
-                                       /* .w <- 1.0f */
-                                       vinterp[loc / 16] |= 0b11 << ((loc % 16) * 2);
-                                       loc++;
-                               }
+                       unsigned mask = coord_mode ? 0b1101 : 0b1001;
+                       uint32_t loc = inloc;
+                       if (compmask & 0x1) {
+                               vpsrepl[loc / 16] |= ((mask >> 0) & 0x3) << ((loc % 16) * 2);
+                               loc++;
+                       }
+                       if (compmask & 0x2) {
+                               vpsrepl[loc / 16] |= ((mask >> 2) & 0x3) << ((loc % 16) * 2);
+                               loc++;
+                       }
+                       if (compmask & 0x4) {
+                               /* .z <- 0.0f */
+                               vinterp[loc / 16] |= 0b10 << ((loc % 16) * 2);
+                               loc++;
+                       }
+                       if (compmask & 0x8) {
+                               /* .w <- 1.0f */
+                               vinterp[loc / 16] |= 0b11 << ((loc % 16) * 2);
+                               loc++;
                        }
                }
        }