Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
540febec
Commit
540febec
authored
Jan 20, 2009
by
Paul Chitescu
Committed by
Alexandre Julliard
Jan 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Detect Radeon Xpress Series, report PCI ID of Radeon Xpress 200M.
parent
33a6e66b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
directx.c
dlls/wined3d/directx.c
+6
-0
wined3d_gl.h
dlls/wined3d/wined3d_gl.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
540febec
...
...
@@ -1286,6 +1286,12 @@ static BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info) {
gl_info
->
gl_card
=
CARD_ATI_RADEON_X700
;
vidmem
=
128
;
/* x700/x8*0 use 128-256MB, >=x1300 128-512MB */
}
/* Radeon Xpress Series - onboard, DX9b, Shader 2.0, 300-400MHz */
else
if
(
strstr
(
gl_info
->
gl_renderer
,
"Radeon Xpress"
))
{
gl_info
->
gl_card
=
CARD_ATI_RADEON_XPRESS_200M
;
vidmem
=
64
;
/* Shared RAM, BIOS configurable, 64-256M */
}
/* Radeon R3xx */
else
{
gl_info
->
gl_card
=
CARD_ATI_RADEON_9500
;
/* Radeon 9500/9550/9600/9700/9800/X300/X550/X600 */
...
...
dlls/wined3d/wined3d_gl.h
View file @
540febec
...
...
@@ -3257,6 +3257,7 @@ typedef enum _GL_Cards {
CARD_ATI_RADEON_7200
=
0x5144
,
CARD_ATI_RADEON_8500
=
0x514c
,
CARD_ATI_RADEON_9500
=
0x4144
,
CARD_ATI_RADEON_XPRESS_200M
=
0x5955
,
CARD_ATI_RADEON_X700
=
0x5e4c
,
CARD_ATI_RADEON_X1600
=
0x71c2
,
CARD_ATI_RADEON_HD2300
=
0x7210
,
...
...
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