diff options
author | 2024-09-06 17:07:35 +0000 | |
---|---|---|
committer | 2024-09-06 17:07:35 +0000 | |
commit | 7f8fb20ecffa83d9ab9275572a7ea06c8fb19f64 (patch) | |
tree | cd8633f3b99b70bd53c5c8a481dc604dd84aa716 /libs/hwui/HardwareBitmapUploader.h | |
parent | 3e3fe4d96fdcabbd0616b4524ac2a92bb1c22dd5 (diff) | |
parent | e77ab7aae54ff887fe090e630652d56f5a5798d2 (diff) |
Merge "Add support for AHARDWAREBUFFER_FORMAT_R10G10B10A10_UNORM" into main
Diffstat (limited to 'libs/hwui/HardwareBitmapUploader.h')
-rw-r--r-- | libs/hwui/HardwareBitmapUploader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/hwui/HardwareBitmapUploader.h b/libs/hwui/HardwareBitmapUploader.h index 00ee99648889..76cb80b722d0 100644 --- a/libs/hwui/HardwareBitmapUploader.h +++ b/libs/hwui/HardwareBitmapUploader.h @@ -33,12 +33,14 @@ public: #ifdef __ANDROID__ static bool hasFP16Support(); static bool has1010102Support(); + static bool has10101010Support(); static bool hasAlpha8Support(); #else static bool hasFP16Support() { return true; } static bool has1010102Support() { return true; } + static bool has10101010Support() { return true; } static bool hasAlpha8Support() { return true; } #endif }; |