1 | /** @file
|
---|
2 | * DevVMWare - VMWare SVGA device - 3D part.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2013-2015 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef ___DEVVMWARE3D_H___
|
---|
18 | #define ___DEVVMWARE3D_H___
|
---|
19 |
|
---|
20 | #include "vmsvga/svga_reg.h"
|
---|
21 | #include "vmsvga/svga3d_reg.h"
|
---|
22 | #include "vmsvga/svga_escape.h"
|
---|
23 | #include "vmsvga/svga_overlay.h"
|
---|
24 |
|
---|
25 | #if defined(RT_OS_WINDOWS) && defined(IN_RING3)
|
---|
26 | # include <Windows.h>
|
---|
27 |
|
---|
28 | # define WM_VMSVGA3D_WAKEUP (WM_APP+1)
|
---|
29 | # define WM_VMSVGA3D_CREATEWINDOW (WM_APP+2)
|
---|
30 | # define WM_VMSVGA3D_DESTROYWINDOW (WM_APP+3)
|
---|
31 | # define WM_VMSVGA3D_RESIZEWINDOW (WM_APP+4)
|
---|
32 | # define WM_VMSVGA3D_EXIT (WM_APP+5)
|
---|
33 |
|
---|
34 | DECLCALLBACK(int) vmsvga3dWindowThread(RTTHREAD ThreadSelf, void *pvUser);
|
---|
35 | int vmsvga3dSendThreadMessage(RTTHREAD pWindowThread, RTSEMEVENT WndRequestSem, UINT msg, WPARAM wParam, LPARAM lParam);
|
---|
36 |
|
---|
37 | #endif
|
---|
38 |
|
---|
39 | /** Arbitrary limit */
|
---|
40 | #define SVGA3D_MAX_SHADER_IDS 0x800
|
---|
41 | /** D3D allows up to 8 texture stages. */
|
---|
42 | #define SVGA3D_MAX_TEXTURE_STAGE 8
|
---|
43 | /** Arbitrary upper limit; seen 8 so far. */
|
---|
44 | #define SVGA3D_MAX_LIGHTS 32
|
---|
45 |
|
---|
46 | void vmsvgaGMRFree(PVGASTATE pThis, uint32_t idGMR);
|
---|
47 | int vmsvgaGMRTransfer(PVGASTATE pThis, const SVGA3dTransferType enmTransferType, uint8_t *pDest, int32_t cbDestPitch,
|
---|
48 | SVGAGuestPtr src, uint32_t offSrc, int32_t cbSrcPitch, uint32_t cbWidth, uint32_t cHeight);
|
---|
49 |
|
---|
50 | int vmsvga3dInit(PVGASTATE pThis);
|
---|
51 | int vmsvga3dPowerOn(PVGASTATE pThis);
|
---|
52 | int vmsvga3dLoadExec(PVGASTATE pThis, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
|
---|
53 | int vmsvga3dSaveExec(PVGASTATE pThis, PSSMHANDLE pSSM);
|
---|
54 | int vmsvga3dTerminate(PVGASTATE pThis);
|
---|
55 | int vmsvga3dReset(PVGASTATE pThis);
|
---|
56 | int vmsvga3dQueryCaps(PVGASTATE pThis, uint32_t idx3dCaps, uint32_t *pu32Val);
|
---|
57 |
|
---|
58 | int vmsvga3dSurfaceDefine(PVGASTATE pThis, uint32_t sid, uint32_t surfaceFlags, SVGA3dSurfaceFormat format, SVGA3dSurfaceFace face[SVGA3D_MAX_SURFACE_FACES], uint32_t multisampleCount, SVGA3dTextureFilter autogenFilter, uint32_t cMipLevels, SVGA3dSize *pMipLevelSize);
|
---|
59 | int vmsvga3dSurfaceDestroy(PVGASTATE pThis, uint32_t sid);
|
---|
60 | int vmsvga3dSurfaceCopy(PVGASTATE pThis, SVGA3dSurfaceImageId dest, SVGA3dSurfaceImageId src, uint32_t cCopyBoxes, SVGA3dCopyBox *pBox);
|
---|
61 | int vmsvga3dSurfaceStretchBlt(PVGASTATE pThis, SVGA3dSurfaceImageId dest, SVGA3dBox destBox, SVGA3dSurfaceImageId src, SVGA3dBox srcBox, SVGA3dStretchBltMode mode);
|
---|
62 | int vmsvga3dSurfaceDMA(PVGASTATE pThis, SVGA3dGuestImage guest, SVGA3dSurfaceImageId host, SVGA3dTransferType transfer, uint32_t cCopyBoxes, SVGA3dCopyBox *pBoxes);
|
---|
63 | int vmsvga3dSurfaceBlitToScreen(PVGASTATE pThis, uint32_t dest, SVGASignedRect destRect, SVGA3dSurfaceImageId src, SVGASignedRect srcRect, uint32_t cRects, SVGASignedRect *pRect);
|
---|
64 |
|
---|
65 | int vmsvga3dContextDefine(PVGASTATE pThis, uint32_t cid);
|
---|
66 | int vmsvga3dContextDestroy(PVGASTATE pThis, uint32_t cid);
|
---|
67 |
|
---|
68 | int vmsvga3dChangeMode(PVGASTATE pThis);
|
---|
69 |
|
---|
70 | int vmsvga3dSetTransform(PVGASTATE pThis, uint32_t cid, SVGA3dTransformType type, float matrix[16]);
|
---|
71 | int vmsvga3dSetZRange(PVGASTATE pThis, uint32_t cid, SVGA3dZRange zRange);
|
---|
72 | int vmsvga3dSetRenderState(PVGASTATE pThis, uint32_t cid, uint32_t cRenderStates, SVGA3dRenderState *pRenderState);
|
---|
73 | int vmsvga3dSetRenderTarget(PVGASTATE pThis, uint32_t cid, SVGA3dRenderTargetType type, SVGA3dSurfaceImageId target);
|
---|
74 | int vmsvga3dSetTextureState(PVGASTATE pThis, uint32_t cid, uint32_t cTextureStates, SVGA3dTextureState *pTextureState);
|
---|
75 | int vmsvga3dSetMaterial(PVGASTATE pThis, uint32_t cid, SVGA3dFace face, SVGA3dMaterial *pMaterial);
|
---|
76 | int vmsvga3dSetLightData(PVGASTATE pThis, uint32_t cid, uint32_t index, SVGA3dLightData *pData);
|
---|
77 | int vmsvga3dSetLightEnabled(PVGASTATE pThis, uint32_t cid, uint32_t index, uint32_t enabled);
|
---|
78 | int vmsvga3dSetViewPort(PVGASTATE pThis, uint32_t cid, SVGA3dRect *pRect);
|
---|
79 | int vmsvga3dSetClipPlane(PVGASTATE pThis, uint32_t cid, uint32_t index, float plane[4]);
|
---|
80 | int vmsvga3dCommandClear(PVGASTATE pThis, uint32_t cid, SVGA3dClearFlag clearFlag, uint32_t color, float depth, uint32_t stencil, uint32_t cRects, SVGA3dRect *pRect);
|
---|
81 | int vmsvga3dCommandPresent(PVGASTATE pThis, uint32_t sid, uint32_t cRects, SVGA3dCopyRect *pRect);
|
---|
82 | int vmsvga3dDrawPrimitives(PVGASTATE pThis, uint32_t cid, uint32_t numVertexDecls, SVGA3dVertexDecl *pVertexDecl, uint32_t numRanges, SVGA3dPrimitiveRange *pNumRange, uint32_t cVertexDivisor, SVGA3dVertexDivisor *pVertexDivisor);
|
---|
83 | int vmsvga3dSetScissorRect(PVGASTATE pThis, uint32_t cid, SVGA3dRect *pRect);
|
---|
84 | int vmsvga3dGenerateMipmaps(PVGASTATE pThis, uint32_t sid, SVGA3dTextureFilter filter);
|
---|
85 |
|
---|
86 | int vmsvga3dShaderDefine(PVGASTATE pThis, uint32_t cid, uint32_t shid, SVGA3dShaderType type, uint32_t cbData, uint32_t *pShaderData);
|
---|
87 | int vmsvga3dShaderDestroy(PVGASTATE pThis, uint32_t cid, uint32_t shid, SVGA3dShaderType type);
|
---|
88 | int vmsvga3dShaderSet(PVGASTATE pThis, uint32_t cid, SVGA3dShaderType type, uint32_t shid);
|
---|
89 | int vmsvga3dShaderSetConst(PVGASTATE pThis, uint32_t cid, uint32_t reg, SVGA3dShaderType type, SVGA3dShaderConstType ctype, uint32_t cRegisters, uint32_t *pValues);
|
---|
90 |
|
---|
91 | int vmsvga3dQueryBegin(PVGASTATE pThis, uint32_t cid, SVGA3dQueryType type);
|
---|
92 | int vmsvga3dQueryEnd(PVGASTATE pThis, uint32_t cid, SVGA3dQueryType type, SVGAGuestPtr guestResult);
|
---|
93 | int vmsvga3dQueryWait(PVGASTATE pThis, uint32_t cid, SVGA3dQueryType type, SVGAGuestPtr guestResult);
|
---|
94 |
|
---|
95 |
|
---|
96 | uint32_t vmsvga3dSurfaceFormatSize(SVGA3dSurfaceFormat format);
|
---|
97 |
|
---|
98 | #ifdef LOG_ENABLED
|
---|
99 | const char *vmsvga3dGetCapString(uint32_t idxCap);
|
---|
100 | const char *vmsvga3dGet3dFormatString(uint32_t format);
|
---|
101 | const char *vmsvga3dGetRenderStateName(uint32_t state);
|
---|
102 | const char *vmsvga3dTextureStateToString(SVGA3dTextureStateName textureState);
|
---|
103 | const char *vmsvgaTransformToString(SVGA3dTransformType type);
|
---|
104 | const char *vmsvgaDeclUsage2String(SVGA3dDeclUsage usage);
|
---|
105 | const char *vmsvgaDeclType2String(SVGA3dDeclType type);
|
---|
106 | const char *vmsvgaDeclMethod2String(SVGA3dDeclMethod method);
|
---|
107 | const char *vmsvgaSurfaceType2String(SVGA3dSurfaceFormat format);
|
---|
108 | const char *vmsvga3dPrimitiveType2String(SVGA3dPrimitiveType PrimitiveType);
|
---|
109 | #endif
|
---|
110 |
|
---|
111 | #endif /* !___DEVVMWARE3D_H___ */
|
---|
112 |
|
---|