Commit d391c11d authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wined3d: Proper CheckDeviceType / CheckDepthStencilMatch support.

parent 1dc0298a
......@@ -573,6 +573,13 @@ struct PLIGHTINFOEL {
/* The default light parameters */
extern const WINED3DLIGHT WINED3D_default_light;
typedef struct WineD3D_PixelFormat
{
int iPixelFormat; /* WGL pixel format */
int redSize, greenSize, blueSize, alphaSize;
int depthSize, stencilSize;
} WineD3D_PixelFormat;
/* The adapter structure */
typedef struct GLPixelFormatDesc GLPixelFormatDesc;
struct WineD3DAdapter
......@@ -582,6 +589,7 @@ struct WineD3DAdapter
const char *driver;
const char *description;
int nCfgs;
WineD3D_PixelFormat *cfgs;
};
extern BOOL InitAdapters(void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment