Commit 999c85ee by Courtney Goeltzenleuchter Committed by Commit Bot

Correct PCI Device ID for Pixel1 & Pixel2

Testing on my Pixel 1XL and Pixel 2XL indicate that the IDs were swapped. Bug: b/167573470 Change-Id: Ie6881bf06acd77d3349f7a4b879fda8f18b1dfe0 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2390824Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarTobin Ehlis <tobine@google.com> Commit-Queue: Tobin Ehlis <tobine@google.com>
parent 59890688
...@@ -35,8 +35,8 @@ enum AndroidDeviceID : uint32_t ...@@ -35,8 +35,8 @@ enum AndroidDeviceID : uint32_t
{ {
ANDROID_DEVICE_ID_UNKNOWN = 0x0, ANDROID_DEVICE_ID_UNKNOWN = 0x0,
ANDROID_DEVICE_ID_NEXUS5X = 0x4010800, ANDROID_DEVICE_ID_NEXUS5X = 0x4010800,
ANDROID_DEVICE_ID_PIXEL1XL = 0x5040001, ANDROID_DEVICE_ID_PIXEL2 = 0x5040001,
ANDROID_DEVICE_ID_PIXEL2 = 0x5030004, ANDROID_DEVICE_ID_PIXEL1XL = 0x5030004,
ANDROID_DEVICE_ID_SWIFTSHADER = 0xC0DE, ANDROID_DEVICE_ID_SWIFTSHADER = 0xC0DE,
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment