VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d.h@ 53749

Last change on this file since 53749 was 53749, checked in by vboxsync, 10 years ago

Use a context configured with the legacy OpenGL profile for getting information not available when using the OpenGL32Core profile.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette