diff options
author | Samuel Pitoiset <[email protected]> | 2020-06-30 18:45:08 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2020-07-02 08:26:03 +0200 |
commit | 53372175c9b42605cc411e45d100245ba3b93e2e (patch) | |
tree | cb182225c2cb4c4d1788a238dde58fb77833f0f0 /src/amd/vulkan/si_cmd_buffer.c | |
parent | 8b8ffb12b401c6e701a24d2ba37551f1fd373347 (diff) |
radv: fix wide points and lines
The maximum value for both points and lines is 65536. This doesn't
fix anything known (just found this while looking in that area).
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5696>
Diffstat (limited to 'src/amd/vulkan/si_cmd_buffer.c')
-rw-r--r-- | src/amd/vulkan/si_cmd_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/si_cmd_buffer.c b/src/amd/vulkan/si_cmd_buffer.c index e6a3bcd45a2..4b73bc513b5 100644 --- a/src/amd/vulkan/si_cmd_buffer.c +++ b/src/amd/vulkan/si_cmd_buffer.c @@ -484,7 +484,7 @@ si_emit_graphics(struct radv_device *device, radeon_emit(cs, S_028A00_HEIGHT(tmp) | S_028A00_WIDTH(tmp)); radeon_set_context_reg_seq(cs, R_028A04_PA_SU_POINT_MINMAX, 1); radeon_emit(cs, S_028A04_MIN_SIZE(radv_pack_float_12p4(0)) | - S_028A04_MAX_SIZE(radv_pack_float_12p4(8192/2))); + S_028A04_MAX_SIZE(radv_pack_float_12p4(8191.875/2))); if (!has_clear_state) { radeon_set_context_reg(cs, R_028004_DB_COUNT_CONTROL, |