1
0
mirror of https://github.com/deadw00d/AROS.git synced 2026-03-19 11:39:53 +00:00

List if RECT_FILL and RASTER_OP capabilities are available.

This commit is contained in:
deadwood
2025-04-04 20:47:59 +02:00
parent aa9489c333
commit e59f7a46fd
2 changed files with 6 additions and 2 deletions

View File

@ -182,10 +182,10 @@
* Capabilities
*/
#define SVGA_CAP_RECT_FILL 0x00001
#define SVGA_CAP_RECT_FILL 0x00001
#define SVGA_CAP_RECT_PAT_FILL 0x00004
#define SVGA_CAP_LEGACY_OFFSCREEN 0x00008
#define SVGA_CAP_RASTER_OP 0x00010
#define SVGA_CAP_RASTER_OP 0x00010
#define SVGA_CAP_GLYPH 0x00400
#define SVGA_CAP_GLYPH_CLIPPING 0x00800
#define SVGA_CAP_OFFSCREEN_1 0x01000

View File

@ -366,6 +366,10 @@ OOP_Object *VMWareSVGA__Root__New(OOP_Class *cl, OOP_Object *o, struct pRoot_New
bug("[VMWareSVGA] %s: 3D.\n", __func__);
if (XSD(cl)->data.capabilities & SVGA_CAP_MULTIMON)
bug("[VMWareSVGA] %s: Multimon\n", __func__);
if (XSD(cl)->data.capabilities & SVGA_CAP_RECT_FILL)
bug("[VMWareSVGA] %s: Rect Fill\n", __func__);
if (XSD(cl)->data.capabilities & SVGA_CAP_RASTER_OP)
bug("[VMWareSVGA] %s: Raster Operations\n", __func__);
)
if (XSD(cl)->data.capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)
{