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:
@ -182,10 +182,10 @@
|
|||||||
* Capabilities
|
* Capabilities
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define SVGA_CAP_RECT_FILL 0x00001
|
#define SVGA_CAP_RECT_FILL 0x00001
|
||||||
#define SVGA_CAP_RECT_PAT_FILL 0x00004
|
#define SVGA_CAP_RECT_PAT_FILL 0x00004
|
||||||
#define SVGA_CAP_LEGACY_OFFSCREEN 0x00008
|
#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 0x00400
|
||||||
#define SVGA_CAP_GLYPH_CLIPPING 0x00800
|
#define SVGA_CAP_GLYPH_CLIPPING 0x00800
|
||||||
#define SVGA_CAP_OFFSCREEN_1 0x01000
|
#define SVGA_CAP_OFFSCREEN_1 0x01000
|
||||||
|
|||||||
@ -366,6 +366,10 @@ OOP_Object *VMWareSVGA__Root__New(OOP_Class *cl, OOP_Object *o, struct pRoot_New
|
|||||||
bug("[VMWareSVGA] %s: 3D.\n", __func__);
|
bug("[VMWareSVGA] %s: 3D.\n", __func__);
|
||||||
if (XSD(cl)->data.capabilities & SVGA_CAP_MULTIMON)
|
if (XSD(cl)->data.capabilities & SVGA_CAP_MULTIMON)
|
||||||
bug("[VMWareSVGA] %s: Multimon\n", __func__);
|
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)
|
if (XSD(cl)->data.capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user