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
fbfb9716
Commit
fbfb9716
authored
Nov 30, 2005
by
Willie Sippel
Committed by
Alexandre Julliard
Nov 30, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more Nvidia card IDs.
parent
a808f38c
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
+8
-0
wined3d_gl.h
include/wine/wined3d_gl.h
+4
-0
No files found.
dlls/wined3d/directx.c
View file @
fbfb9716
...
...
@@ -368,6 +368,14 @@ static BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info, Display* display)
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE4_TI4600
;
}
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"GeForceFX"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCEFX_5900ULTRA
;
}
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"Quadro FX 3000"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_QUADROFX_3000
;
}
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"GeForce 6800"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_6800ULTRA
;
}
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"Quadro FX 4000"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_QUADROFX_4000
;
}
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"GeForce 7800"
))
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE_7800ULTRA
;
}
else
{
gl_info
->
gl_card
=
CARD_NVIDIA_GEFORCE4_TI4600
;
}
...
...
include/wine/wined3d_gl.h
View file @
fbfb9716
...
...
@@ -860,6 +860,10 @@ typedef enum _GL_Cards {
CARD_NVIDIA_GEFORCE4_TI4600
=
0x0250
,
CARD_NVIDIA_GEFORCE4_TI4200
=
0x0281
,
CARD_NVIDIA_GEFORCEFX_5900ULTRA
=
0x0330
,
CARD_NVIDIA_QUADROFX_3000
=
0x0338
,
CARD_NVIDIA_GEFORCE_6800ULTRA
=
0x0040
,
CARD_NVIDIA_QUADROFX_4000
=
0x004e
,
CARD_NVIDIA_GEFORCE_7800ULTRA
=
0x0090
,
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