John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | #ifndef DEVICEINFO_H |
| 17 | #define DEVICEINFO_H |
| 18 | |
John Reck | 8dc02f9 | 2017-07-17 09:55:02 -0700 | [diff] [blame] | 19 | #include <ui/DisplayInfo.h> |
| 20 | |
John Reck | 8dc02f9 | 2017-07-17 09:55:02 -0700 | [diff] [blame] | 21 | #include "Extensions.h" |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 22 | #include "utils/Macros.h" |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 23 | |
| 24 | namespace android { |
| 25 | namespace uirenderer { |
| 26 | |
| 27 | class DeviceInfo { |
| 28 | PREVENT_COPY_AND_ASSIGN(DeviceInfo); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 29 | |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 30 | public: |
| 31 | // returns nullptr if DeviceInfo is not initialized yet |
| 32 | // Note this does not have a memory fence so it's up to the caller |
| 33 | // to use one if required. Normally this should not be necessary |
| 34 | static const DeviceInfo* get(); |
| 35 | |
| 36 | // only call this after GL has been initialized, or at any point if compiled |
| 37 | // with HWUI_NULL_GPU |
| 38 | static void initialize(); |
Stan Iliev | 500a0c3 | 2016-10-26 10:30:09 -0400 | [diff] [blame] | 39 | static void initialize(int maxTextureSize); |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 40 | |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 41 | int maxTextureSize() const { return mMaxTextureSize; } |
John Reck | 8dc02f9 | 2017-07-17 09:55:02 -0700 | [diff] [blame] | 42 | const DisplayInfo& displayInfo() const { return mDisplayInfo; } |
| 43 | const Extensions& extensions() const { return mExtensions; } |
| 44 | |
| 45 | static uint32_t multiplyByResolution(uint32_t in) { |
| 46 | auto di = DeviceInfo::get()->displayInfo(); |
| 47 | return di.w * di.h * in; |
| 48 | } |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 49 | |
| 50 | private: |
| 51 | DeviceInfo() {} |
| 52 | ~DeviceInfo() {} |
| 53 | |
| 54 | void load(); |
John Reck | 8dc02f9 | 2017-07-17 09:55:02 -0700 | [diff] [blame] | 55 | void loadDisplayInfo(); |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 56 | |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 57 | int mMaxTextureSize; |
John Reck | 8dc02f9 | 2017-07-17 09:55:02 -0700 | [diff] [blame] | 58 | DisplayInfo mDisplayInfo; |
| 59 | Extensions mExtensions; |
John Reck | 704bed0 | 2015-11-05 09:22:17 -0800 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | } /* namespace uirenderer */ |
| 63 | } /* namespace android */ |
| 64 | |
| 65 | #endif /* DEVICEINFO_H */ |