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
df59ac1d
Commit
df59ac1d
authored
Aug 19, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
Aug 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Recognize some more AMD cards.
parent
08058c79
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
directx.c
dlls/wined3d/directx.c
+15
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+7
-0
No files found.
dlls/wined3d/directx.c
View file @
df59ac1d
...
...
@@ -1323,9 +1323,16 @@ 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_HD7660D
,
"AMD Radeon HD 7660D"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD7700
,
"AMD Radeon HD 7700 Series"
,
DRIVER_AMD_R600
,
1024
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD7800
,
"AMD Radeon HD 7800 Series"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD7900
,
"AMD Radeon HD 7900 Series"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD8600M
,
"AMD Radeon HD 8600M Series"
,
DRIVER_AMD_R600
,
1024
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD8670
,
"AMD Radeon HD 8670"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_HD8770
,
"AMD Radeon HD 8770"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_R3
,
"AMD Radeon HD 8400 / R3 Series"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_R7
,
"AMD Radeon(TM) R7 Graphics"
,
DRIVER_AMD_R600
,
2048
},
{
HW_VENDOR_AMD
,
CARD_AMD_RADEON_R9
,
"AMD Radeon R9 290"
,
DRIVER_AMD_R600
,
4096
},
/* VMware */
{
HW_VENDOR_VMWARE
,
CARD_VMWARE_SVGA3D
,
"VMware SVGA 3D (Microsoft Corporation - WDDM)"
,
DRIVER_VMWARE
,
1024
},
...
...
@@ -1996,11 +2003,19 @@ cards_intel[] =
* These are returned but not handled: RC410, RV380. */
cards_amd_mesa
[]
=
{
/* Sea Islands */
{
"HAWAII"
,
CARD_AMD_RADEON_R9
},
{
"KAVERI"
,
CARD_AMD_RADEON_R7
},
{
"KABINI"
,
CARD_AMD_RADEON_R3
},
{
"BONAIRE"
,
CARD_AMD_RADEON_HD8770
},
/* Southern Islands */
{
"OLAND"
,
CARD_AMD_RADEON_HD8670
},
{
"HAINAN"
,
CARD_AMD_RADEON_HD8600M
},
{
"TAHITI"
,
CARD_AMD_RADEON_HD7900
},
{
"PITCAIRN"
,
CARD_AMD_RADEON_HD7800
},
{
"CAPE VERDE"
,
CARD_AMD_RADEON_HD7700
},
/* Northern Islands */
{
"ARUBA"
,
CARD_AMD_RADEON_HD7660D
},
{
"CAYMAN"
,
CARD_AMD_RADEON_HD6900
},
{
"BARTS"
,
CARD_AMD_RADEON_HD6800
},
{
"TURKS"
,
CARD_AMD_RADEON_HD6600
},
...
...
dlls/wined3d/wined3d_private.h
View file @
df59ac1d
...
...
@@ -1413,9 +1413,16 @@ enum wined3d_pci_device
CARD_AMD_RADEON_HD6700
=
0x68ba
,
CARD_AMD_RADEON_HD6800
=
0x6739
,
CARD_AMD_RADEON_HD6900
=
0x6719
,
CARD_AMD_RADEON_HD7660D
=
0x9901
,
CARD_AMD_RADEON_HD7700
=
0x683d
,
CARD_AMD_RADEON_HD7800
=
0x6819
,
CARD_AMD_RADEON_HD7900
=
0x679a
,
CARD_AMD_RADEON_HD8600M
=
0x6660
,
CARD_AMD_RADEON_HD8670
=
0x6610
,
CARD_AMD_RADEON_HD8770
=
0x665c
,
CARD_AMD_RADEON_R3
=
0x9830
,
CARD_AMD_RADEON_R7
=
0x130f
,
CARD_AMD_RADEON_R9
=
0x67b1
,
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