wined3d: Added NVidia GT240 detection.

William Waghorn willw at litany.me.uk
Wed Dec 30 20:54:30 CST 2009


---
 dlls/wined3d/directx.c         |    7 +++++++
 dlls/wined3d/wined3d_private.h |    1 +
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/dlls/wined3d/directx.c b/dlls/wined3d/directx.c
index 713a349..69d9862 100644
--- a/dlls/wined3d/directx.c
+++ b/dlls/wined3d/directx.c
@@ -954,6 +954,7 @@ static const struct driver_version_information driver_version_table[] =
     {VENDOR_NVIDIA,     CARD_NVIDIA_GEFORCE_GTX260,     "NVIDIA GeForce GTX 260",           15, 11, 8618   },
     {VENDOR_NVIDIA,     CARD_NVIDIA_GEFORCE_GTX275,     "NVIDIA GeForce GTX 275",           15, 11, 8618   },
     {VENDOR_NVIDIA,     CARD_NVIDIA_GEFORCE_GTX280,     "NVIDIA GeForce GTX 280",           15, 11, 8618   },
+    {VENDOR_NVIDIA,     CARD_NVIDIA_GEFORCE_GT240,      "NVIDIA GeForce GT 240",            15, 11, 8618   },
 
     /* ATI cards. The driver versions are somewhat similar, but not quite the same. Let's hardcode. */
     {VENDOR_ATI,        CARD_ATI_RADEON_9500,           "ATI Radeon 9500",                  14, 10, 6764    },
@@ -1222,6 +1223,12 @@ static enum wined3d_pci_device wined3d_guess_card(const struct wined3d_gl_info *
                     *vidmem = 1024;
                     return CARD_NVIDIA_GEFORCE_GTX260;
                 }
+                /* Geforce 200 - midend */
+                if (strstr(gl_renderer, "GT 240"))
+                {
+                   *vidmem = 512;
+                   return CARD_NVIDIA_GEFORCE_GT240;
+                }
 
                 /* Geforce9 - highend / Geforce 200 - midend (GTS 150/250 are based on the same core) */
                 if (strstr(gl_renderer, "9800")
diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h
index b22a7b2..402470a 100644
--- a/dlls/wined3d/wined3d_private.h
+++ b/dlls/wined3d/wined3d_private.h
@@ -1309,6 +1309,7 @@ enum wined3d_pci_device
     CARD_NVIDIA_GEFORCE_GTX260      = 0x05e2,
     CARD_NVIDIA_GEFORCE_GTX275      = 0x05e6,
     CARD_NVIDIA_GEFORCE_GTX280      = 0x05e1,
+    CARD_NVIDIA_GEFORCE_GT240       = 0x0ca3,
 
     CARD_INTEL_845G                 = 0x2562,
     CARD_INTEL_I830G                = 0x3577,
-- 
1.5.6.5




More information about the wine-patches mailing list