1 | /* $Id: VBoxGaHWInfo.h 76539 2018-12-30 06:22:29Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox Windows Guest Mesa3D - Gallium driver interface.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2016-2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___VBoxGaHWInfo_h__
|
---|
19 | #define ___VBoxGaHWInfo_h__
|
---|
20 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
21 | # pragma once
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | #include <iprt/assert.h>
|
---|
25 |
|
---|
26 | #include <VBoxGaHwSVGA.h>
|
---|
27 |
|
---|
28 | /* Gallium virtual hardware supported by the miniport. */
|
---|
29 | #define VBOX_GA_HW_TYPE_UNKNOWN 0
|
---|
30 | #define VBOX_GA_HW_TYPE_VMSVGA 1
|
---|
31 |
|
---|
32 | /*
|
---|
33 | * VBOXGAHWINFO contains information about the virtual hardware, which is passed
|
---|
34 | * to the user mode Gallium driver. The driver can not query the info at the initialization time,
|
---|
35 | * therefore we send the complete info to the driver.
|
---|
36 | *
|
---|
37 | * VBOXGAHWINFO struct goes both to 32 and 64 bit user mode binaries, take care of alignment.
|
---|
38 | */
|
---|
39 | #pragma pack(1)
|
---|
40 | typedef struct VBOXGAHWINFO
|
---|
41 | {
|
---|
42 | uint32_t u32HwType; /* VBOX_GA_HW_TYPE_* */
|
---|
43 | uint32_t u32Reserved;
|
---|
44 | union
|
---|
45 | {
|
---|
46 | VBOXGAHWINFOSVGA svga;
|
---|
47 | uint8_t au8Raw[65536];
|
---|
48 | } u;
|
---|
49 | } VBOXGAHWINFO;
|
---|
50 | #pragma pack()
|
---|
51 |
|
---|
52 | AssertCompile(RT_SIZEOFMEMB(VBOXGAHWINFO, u) <= RT_SIZEOFMEMB(VBOXGAHWINFO, u.au8Raw));
|
---|
53 |
|
---|
54 | #endif
|
---|