mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 20:38:06 +02:00
zink: drop largePoints requirement
this is not required by any version of GL, so don't pretend it's needed
cc: mesa-stable
Reviewed-by: Emma Anholt <emma@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16758>
(cherry picked from commit 4b5bb21318)
This commit is contained in:
parent
2d881b9907
commit
d186816610
3 changed files with 1 additions and 4 deletions
|
|
@ -604,7 +604,7 @@
|
|||
"description": "zink: drop largePoints requirement",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"because_sha": null
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@ Here's a list of those requirements:
|
|||
|
||||
* ``logicOp``
|
||||
* ``fillModeNonSolid``
|
||||
* ``largePoints``
|
||||
* ``alphaToOne``
|
||||
* ``shaderClipDistance``
|
||||
|
||||
|
|
|
|||
|
|
@ -2015,7 +2015,6 @@ check_base_requirements(struct zink_screen *screen)
|
|||
{
|
||||
if (!screen->info.feats.features.logicOp ||
|
||||
!screen->info.feats.features.fillModeNonSolid ||
|
||||
!screen->info.feats.features.largePoints ||
|
||||
!screen->info.feats.features.shaderClipDistance ||
|
||||
!(screen->info.feats12.scalarBlockLayout ||
|
||||
screen->info.have_EXT_scalar_block_layout) ||
|
||||
|
|
@ -2030,7 +2029,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.largePoints);
|
||||
CHECK_OR_PRINT(feats.features.shaderClipDistance);
|
||||
if (!screen->info.feats12.scalarBlockLayout && !screen->info.have_EXT_scalar_block_layout)
|
||||
printf("scalarBlockLayout OR EXT_scalar_block_layout ");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue