freedreno: drop hack for old dEQP

Since ac7a167b56d7 ("Adjust out of surface verification for wide lines")
from 2017, this shouldn't be necessary anymore.

Acked-by: Rob Clark <robclark@freedesktop.org>
Signed-off-by: David Heidelberg <david@ixit.cz>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30460>
This commit is contained in:
David Heidelberg 2024-08-01 17:14:07 +09:00
parent 8bca7e520c
commit ceece45b2b

View file

@ -648,15 +648,6 @@ fd_screen_get_paramf(struct pipe_screen *pscreen, enum pipe_capf param)
return 0.1f;
case PIPE_CAPF_MAX_LINE_WIDTH:
case PIPE_CAPF_MAX_LINE_WIDTH_AA:
/* NOTE: actual value is 127.0f, but this is working around a deqp
* bug.. dEQP-GLES3.functional.rasterization.primitives.lines_wide
* uses too small of a render target size, and gets confused when
* the lines start going offscreen.
*
* See: https://code.google.com/p/android/issues/detail?id=206513
*/
if (FD_DBG(DEQP))
return 48.0f;
return 127.0f;
case PIPE_CAPF_MAX_POINT_SIZE:
case PIPE_CAPF_MAX_POINT_SIZE_AA: