radv: program a default point size.
authorDave Airlie <airlied@redhat.com>
Wed, 18 Jan 2017 03:46:43 +0000 (13:46 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 24 Jan 2017 23:58:38 +0000 (09:58 +1000)
Along the lines of what
3b804819 anv: Default PointSize to 1.0 if not written by the shader
does for anv, program a default point size in the hw of 1.0.

This preempt fixes a bunch of geom shader tests.

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Cc: "17.0" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/vulkan/radv_cmd_buffer.c

index c6f238bfa2653e6a7a5c4f4faaf4b86292f04775..c62d275fd95d4d59dfcd3b668a0228b3f430cd6c 100644 (file)
@@ -438,7 +438,8 @@ radv_emit_graphics_raster_state(struct radv_cmd_buffer *cmd_buffer,
                               raster->spi_interp_control);
 
        radeon_set_context_reg_seq(cmd_buffer->cs, R_028A00_PA_SU_POINT_SIZE, 2);
-       radeon_emit(cmd_buffer->cs, 0);
+       unsigned tmp = (unsigned)(1.0 * 8.0);
+       radeon_emit(cmd_buffer->cs, S_028A00_HEIGHT(tmp) | S_028A00_WIDTH(tmp));
        radeon_emit(cmd_buffer->cs, S_028A04_MIN_SIZE(radv_pack_float_12p4(0)) |
                    S_028A04_MAX_SIZE(radv_pack_float_12p4(8192/2))); /* R_028A04_PA_SU_POINT_MINMAX */