panvk: Conform viewport code to Vulkan spec
authorAlyssa Rosenzweig <alyssa@collabora.com>
Mon, 25 Apr 2022 15:32:39 +0000 (11:32 -0400)
committerMarge Bot <emma+marge@anholt.net>
Mon, 9 May 2022 13:40:17 +0000 (13:40 +0000)
The depth equations weren't quite right, with spec citations to prove it. This
didn't fix the test I was debugging, but it surely fixed /something/.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16155>

src/panfrost/vulkan/panvk_cs.c

index cf1915b..fe717dd 100644 (file)
 #include "panvk_cs.h"
 #include "panvk_private.h"
 
+/*
+ * Upload the viewport scale. Defined as (px/2, py/2, pz) at the start of section
+ * 24.5 ("Controlling the Viewport") of the Vulkan spec. At the end of the
+ * section, the spec defines:
+ *
+ * px = width
+ * py = height
+ * pz = maxDepth - minDepth
+ */
 void
 panvk_sysval_upload_viewport_scale(const VkViewport *viewport,
                                    union panvk_sysval_data *data)
 {
    data->f32[0] = 0.5f * viewport->width;
    data->f32[1] = 0.5f * viewport->height;
-   data->f32[2] = 0.5f * (viewport->maxDepth - viewport->minDepth);
+   data->f32[2] = (viewport->maxDepth - viewport->minDepth);
 }
 
+/*
+ * Upload the viewport offset. Defined as (ox, oy, oz) at the start of section
+ * 24.5 ("Controlling the Viewport") of the Vulkan spec. At the end of the
+ * section, the spec defines:
+ *
+ * ox = x + width/2
+ * oy = y + height/2
+ * oz = minDepth
+ */
 void
 panvk_sysval_upload_viewport_offset(const VkViewport *viewport,
                                     union panvk_sysval_data *data)
 {
    data->f32[0] = (0.5f * viewport->width) + viewport->x;
    data->f32[1] = (0.5f * viewport->height) + viewport->y;
-   data->f32[2] = (0.5f * (viewport->maxDepth - viewport->minDepth)) + viewport->minDepth;
+   data->f32[2] = viewport->minDepth;
 }