Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0c582dca
Commit
0c582dca
authored
Dec 30, 2009
by
William Waghorn
Committed by
Alexandre Julliard
Jan 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Added NVidia GT240 detection.
parent
c4ffbade
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
directx.c
dlls/wined3d/directx.c
+7
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
0c582dca
...
...
@@ -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"
)
...
...
dlls/wined3d/wined3d_private.h
View file @
0c582dca
...
...
@@ -1313,6 +1313,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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment