mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-01-24 14:43:41 +08:00
zink: drop wideLines requirement
this is not a requirement for any version of GL, so don't pretend it's a requirement cc: mesa-stable Reviewed-by: Emma Anholt <emma@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16758>
This commit is contained in:
parent
9bb9511edc
commit
63a9e0a986
@ -29,7 +29,6 @@ Here's a list of those requirements:
|
||||
|
||||
* ``logicOp``
|
||||
* ``fillModeNonSolid``
|
||||
* ``wideLines``
|
||||
* ``largePoints``
|
||||
* ``alphaToOne``
|
||||
* ``shaderClipDistance``
|
||||
|
@ -2028,7 +2028,6 @@ check_base_requirements(struct zink_screen *screen)
|
||||
{
|
||||
if (!screen->info.feats.features.logicOp ||
|
||||
!screen->info.feats.features.fillModeNonSolid ||
|
||||
!screen->info.feats.features.wideLines ||
|
||||
!screen->info.feats.features.largePoints ||
|
||||
!screen->info.feats.features.shaderClipDistance ||
|
||||
!(screen->info.feats12.scalarBlockLayout ||
|
||||
@ -2044,7 +2043,6 @@ check_base_requirements(struct zink_screen *screen)
|
||||
fprintf(stderr, "%s ", #X)
|
||||
CHECK_OR_PRINT(feats.features.logicOp);
|
||||
CHECK_OR_PRINT(feats.features.fillModeNonSolid);
|
||||
CHECK_OR_PRINT(feats.features.wideLines);
|
||||
CHECK_OR_PRINT(feats.features.largePoints);
|
||||
CHECK_OR_PRINT(feats.features.shaderClipDistance);
|
||||
if (!screen->info.feats12.scalarBlockLayout && !screen->info.have_EXT_scalar_block_layout)
|
||||
|
Loading…
Reference in New Issue
Block a user