wined3d: Add GPU information for a few more Intel KBL GPUs.
Signed-off-by: Kristján Gerhardsson <kristjang@ccpgames.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
29172fb7e2
commit
8003f1fd64
|
@ -478,8 +478,10 @@ static const struct wined3d_gpu_description gpu_description_table[] =
|
|||
{HW_VENDOR_INTEL, CARD_INTEL_IP580_2, "Intel(R) Iris(TM) Pro Graphics 580", DRIVER_INTEL_HD4000, 2048},
|
||||
{HW_VENDOR_INTEL, CARD_INTEL_IPP580_1, "Intel(R) Iris(TM) Pro Graphics P580", DRIVER_INTEL_HD4000, 2048},
|
||||
{HW_VENDOR_INTEL, CARD_INTEL_IPP580_2, "Intel(R) Iris(TM) Pro Graphics P580", DRIVER_INTEL_HD4000, 2048},
|
||||
{HW_VENDOR_INTEL, CARD_INTEL_UHD617, "Intel(R) UHD Graphics 617", DRIVER_INTEL_HD4000, 2048},
|
||||
{HW_VENDOR_INTEL, CARD_INTEL_HD620, "Intel(R) HD Graphics 620", DRIVER_INTEL_HD4000, 3072},
|
||||
{HW_VENDOR_INTEL, CARD_INTEL_HD630, "Intel(R) HD Graphics 630", DRIVER_INTEL_HD4000, 3072},
|
||||
{HW_VENDOR_INTEL, CARD_INTEL_HD630_1, "Intel(R) HD Graphics 630", DRIVER_INTEL_HD4000, 3072},
|
||||
{HW_VENDOR_INTEL, CARD_INTEL_HD630_2, "Intel(R) HD Graphics 630", DRIVER_INTEL_HD4000, 3072},
|
||||
};
|
||||
|
||||
static const struct driver_version_information *get_driver_version_info(enum wined3d_display_driver driver,
|
||||
|
|
|
@ -2594,8 +2594,10 @@ enum wined3d_pci_device
|
|||
CARD_INTEL_IP580_2 = 0x193b,
|
||||
CARD_INTEL_IPP580_1 = 0x193a,
|
||||
CARD_INTEL_IPP580_2 = 0x193d,
|
||||
CARD_INTEL_UHD617 = 0x87c0,
|
||||
CARD_INTEL_HD620 = 0x5916,
|
||||
CARD_INTEL_HD630 = 0x5912,
|
||||
CARD_INTEL_HD630_1 = 0x5912,
|
||||
CARD_INTEL_HD630_2 = 0x591b,
|
||||
};
|
||||
|
||||
struct wined3d_fbo_ops
|
||||
|
|
Loading…
Reference in New Issue