remove the start of reactos vbe directdraw support until it is ready. allot problem with current code. so I discde to remove it from reactos, untill it is stable.

svn path=/trunk/; revision=24786
This commit is contained in:
Magnus Olsen 2006-11-19 20:24:15 +00:00
parent 0cd52c45f5
commit 07f3fc4c5d
3 changed files with 2 additions and 37 deletions

View file

@ -31,11 +31,7 @@ static DRVFN DrvFunctionTable[] =
{INDEX_DrvGetModes, (PFN)DrvGetModes},
{INDEX_DrvSetPalette, (PFN)DrvSetPalette},
{INDEX_DrvSetPointerShape, (PFN)DrvSetPointerShape},
{INDEX_DrvMovePointer, (PFN)DrvMovePointer},
{INDEX_DrvGetDirectDrawInfo, (PFN) DrvGetDirectDrawInfo },
{INDEX_DrvEnableDirectDraw, (PFN) DrvEnableDirectDraw },
{INDEX_DrvDisableDirectDraw, (PFN) DrvDisableDirectDraw }
{INDEX_DrvMovePointer, (PFN)DrvMovePointer}
};

View file

@ -69,8 +69,7 @@ typedef struct _PDEV
DWORD dwHeap;
VIDEOMEMORY* pvmList;
BOOL bDDInitialized;
DDPIXELFORMAT ddpfDisplay;
DDHALINFO dxHalInfo;
DDPIXELFORMAT ddpfDisplay;
} PDEV, *PPDEV;
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
@ -78,34 +77,6 @@ typedef struct _PDEV
#define DEVICE_NAME L"framebuf"
#define ALLOC_TAG TAG('F','B','U','F')
DWORD CALLBACK
DdCanCreateSurface( LPDDHAL_CANCREATESURFACEDATA pccsd );
DWORD CALLBACK
DdCreateSurface(PDD_CREATESURFACEDATA pcsd);
VOID STDCALL
DrvDisableDirectDraw(
IN DHPDEV dhpdev);
BOOL STDCALL
DrvEnableDirectDraw(
IN DHPDEV dhpdev,
OUT DD_CALLBACKS *pCallBacks,
OUT DD_SURFACECALLBACKS *pSurfaceCallBacks,
OUT DD_PALETTECALLBACKS *pPaletteCallBacks);
BOOL STDCALL
DrvGetDirectDrawInfo(
IN DHPDEV dhpdev,
OUT DD_HALINFO *pHalInfo,
OUT DWORD *pdwNumHeaps,
OUT VIDEOMEMORY *pvmList,
OUT DWORD *pdwNumFourCCCodes,
OUT DWORD *pdwFourCC);
DHPDEV STDCALL
DrvEnablePDEV(

View file

@ -9,7 +9,5 @@
<file>pointer.c</file>
<file>screen.c</file>
<file>surface.c</file>
<file>ddenable.c</file>
<file>dd.c</file>
<file>framebuf.rc</file>
</module>