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
9877df9a
Commit
9877df9a
authored
Jul 18, 2012
by
Caron Jensen
Committed by
Alexandre Julliard
Jul 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Recognize AMD Tahiti cards.
parent
b810fad3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
directx.c
dlls/wined3d/directx.c
+5
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
9877df9a
...
...
@@ -1154,6 +1154,7 @@ static const struct gpu_description gpu_description_table[] =
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD6700
,
"AMD Radeon HD 6700 Series"
,
DRIVER_AMD_R600
,
1024
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD6800
,
"AMD Radeon HD 6800 Series"
,
DRIVER_AMD_R600
,
1024
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD6900
,
"AMD Radeon HD 6900 Series"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD7900
,
"AMD Radeon HD 7900 Series"
,
DRIVER_AMD_R600
,
2048
},
/* Intel cards */
{
HW_VENDOR_INTEL
,
CARD_INTEL_830M
,
"Intel(R) 82830M Graphics Controller"
,
DRIVER_INTEL_GMA800
,
32
},
{
HW_VENDOR_INTEL
,
CARD_INTEL_855GM
,
"Intel(R) 82852/82855 GM/GME Graphics Controller"
,
DRIVER_INTEL_GMA800
,
32
},
...
...
@@ -1709,6 +1710,8 @@ static enum wined3d_pci_device select_card_amd_binary(const struct wined3d_gl_in
}
cards
[]
=
{
/* Southern Islands */
{
"HD 7900"
,
CARD_AMD_RADEON_HD7900
},
/* Northern Islands */
{
"HD 6900"
,
CARD_AMD_RADEON_HD6900
},
{
"HD 6800"
,
CARD_AMD_RADEON_HD6800
},
...
...
@@ -1916,6 +1919,8 @@ static enum wined3d_pci_device select_card_amd_mesa(const struct wined3d_gl_info
}
cards
[]
=
{
/* Southern Islands */
{
"TAHITI"
,
CARD_AMD_RADEON_HD7900
},
/* Northern Islands */
{
"CAYMAN"
,
CARD_AMD_RADEON_HD6900
},
{
"BARTS"
,
CARD_AMD_RADEON_HD6800
},
...
...
dlls/wined3d/wined3d_private.h
View file @
9877df9a
...
...
@@ -1344,6 +1344,7 @@ enum wined3d_pci_device
CARD_AMD_RADEON_HD6700
=
0x68BA
,
CARD_AMD_RADEON_HD6800
=
0x6739
,
CARD_AMD_RADEON_HD6900
=
0x6719
,
CARD_AMD_RADEON_HD7900
=
0x679A
,
CARD_NVIDIA_RIVA_128
=
0x0018
,
CARD_NVIDIA_RIVA_TNT
=
0x0020
,
...
...
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