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
b5a5db91
Commit
b5a5db91
authored
Jul 12, 2010
by
Seth Shelnutt
Committed by
Alexandre Julliard
Jul 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Nvidia Geforce 8400 and 8500 are now reported as 8400GS instead of 8300GS.
parent
c398e6fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
directx.c
dlls/wined3d/directx.c
+11
-4
No files found.
dlls/wined3d/directx.c
View file @
b5a5db91
...
...
@@ -1009,6 +1009,7 @@ static const struct driver_version_information driver_version_table[] =
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_7600
,
"NVIDIA GeForce 7600 GT"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_7800GT
,
"NVIDIA GeForce 7800 GT"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_8300GS
,
"NVIDIA GeForce 8300 GS"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_8400GS
,
"NVIDIA GeForce 8400 GS"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_8600GT
,
"NVIDIA GeForce 8600 GT"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_8600MGT
,
"NVIDIA GeForce 8600M GT"
,
15
,
11
,
9745
},
{
HW_VENDOR_NVIDIA
,
CARD_NVIDIA_GEFORCE_8800GTS
,
"NVIDIA GeForce 8800 GTS"
,
15
,
11
,
9745
},
...
...
@@ -1405,14 +1406,20 @@ static enum wined3d_pci_device select_card_nvidia_binary(const struct wined3d_gl
return
CARD_NVIDIA_GEFORCE_8600GT
;
}
/* Geforce8 - mid-lowend */
if
(
strstr
(
gl_renderer
,
"8400"
)
||
strstr
(
gl_renderer
,
"8500"
))
{
*
vidmem
=
128
;
/* 128-256MB for a 8400, 256-512MB for a 8500 */
return
CARD_NVIDIA_GEFORCE_8400GS
;
}
/* Geforce8 - lowend */
if
(
strstr
(
gl_renderer
,
"8100"
)
||
strstr
(
gl_renderer
,
"8200"
)
||
strstr
(
gl_renderer
,
"8300"
)
||
strstr
(
gl_renderer
,
"8400"
)
||
strstr
(
gl_renderer
,
"8500"
))
||
strstr
(
gl_renderer
,
"8300"
))
{
*
vidmem
=
128
;
/* 128-256MB for a 8300
, 256-512MB for a 8400
*/
*
vidmem
=
128
;
/* 128-256MB for a 8300 */
return
CARD_NVIDIA_GEFORCE_8300GS
;
}
...
...
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