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
38a98f67
Commit
38a98f67
authored
Jun 08, 2008
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Jun 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Update nvidia GPUs.
parent
fe5b8ada
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
directx.c
dlls/wined3d/directx.c
+10
-0
wined3d_gl.h
include/wine/wined3d_gl.h
+2
-0
No files found.
dlls/wined3d/directx.c
View file @
38a98f67
...
...
@@ -1069,6 +1069,16 @@ BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info) {
* shader capabilities, so we use the shader capabilities to distinguish between FX and 6xxx/7xxx.
*/
if
(
WINE_D3D9_CAPABLE
(
gl_info
)
&&
(
gl_info
->
vs_nv_version
==
VS_VERSION_30
))
{
/* Geforce9 - highend */
if
(
strstr
(
gl_info
->
gl_renderer
,
"9800"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_9800GT
;
vidmem
=
512
;
}
/* Geforce9 - midend */
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"9600"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_9600GT
;
vidmem
=
384
;
/* The 9600GSO has 384MB, the 9600GT has 512-1024MB */
}
/* Geforce8 - highend */
if
(
strstr
(
gl_info
->
gl_renderer
,
"8800"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_8800GTS
;
...
...
include/wine/wined3d_gl.h
View file @
38a98f67
...
...
@@ -3243,6 +3243,8 @@ typedef enum _GL_Cards {
CARD_NVIDIA_GEFORCE_8600GT
=
0x0402
,
CARD_NVIDIA_GEFORCE_8600MGT
=
0x0407
,
CARD_NVIDIA_GEFORCE_8800GTS
=
0x0193
,
CARD_NVIDIA_GEFORCE_9600GT
=
0x0622
,
CARD_NVIDIA_GEFORCE_9800GT
=
0x0614
,
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