Skip to content
Snippets Groups Projects
Commit 419920eb authored by Mike Blumenkrantz's avatar Mike Blumenkrantz :lifter: Committed by Dylan Baker
Browse files

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's avatarEmma Anholt <emma@anholt.net>
Part-of: <mesa/mesa!16758>
(cherry picked from commit 63a9e0a9)
parent 1a390ad8
No related branches found
No related tags found
No related merge requests found
......@@ -688,7 +688,7 @@
"description": "zink: drop wideLines requirement",
"nominated": true,
"nomination_type": 0,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null
},
......
......@@ -29,7 +29,6 @@ Here's a list of those requirements:
* ``logicOp``
* ``fillModeNonSolid``
* ``wideLines``
* ``largePoints``
* ``alphaToOne``
* ``shaderClipDistance``
......
......@@ -2076,7 +2076,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 ||
......@@ -2092,7 +2091,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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment