Commit 21a3c1d4 authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wined3d: Better video memory reporting.

parent e94a21b2
...@@ -42,7 +42,7 @@ wined3d_settings_t wined3d_settings = ...@@ -42,7 +42,7 @@ wined3d_settings_t wined3d_settings =
FALSE, /* Use of GLSL disabled by default */ FALSE, /* Use of GLSL disabled by default */
ORM_BACKBUFFER, /* Use the backbuffer to do offscreen rendering */ ORM_BACKBUFFER, /* Use the backbuffer to do offscreen rendering */
RTL_AUTO, /* Automatically determine best locking method */ RTL_AUTO, /* Automatically determine best locking method */
64*1024*1024, /* 64MB texture memory by default */ 0, /* The default of memory is set in FillGLCaps */
NULL /* No wine logo by default */ NULL /* No wine logo by default */
}; };
......
...@@ -3101,6 +3101,8 @@ typedef enum _GL_Cards { ...@@ -3101,6 +3101,8 @@ typedef enum _GL_Cards {
CARD_INTEL_I915GM = 0x2592 CARD_INTEL_I915GM = 0x2592
} GL_Cards; } GL_Cards;
#define WINE_DEFAULT_VIDMEM 64*1024*1024
typedef enum _GL_VSVersion { typedef enum _GL_VSVersion {
VS_VERSION_NOT_SUPPORTED = 0x0, VS_VERSION_NOT_SUPPORTED = 0x0,
VS_VERSION_10 = 0x10, VS_VERSION_10 = 0x10,
......
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