blob: 5bd7b14b156db46e37c7f294fd1bde0a04bbdb76 [file] [log] [blame]
John Reck704bed02015-11-05 09:22:17 -08001/*
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 Reck8dc02f92017-07-17 09:55:02 -070019#include <ui/DisplayInfo.h>
20
John Reck704bed02015-11-05 09:22:17 -080021#include "utils/Macros.h"
John Reck8dc02f92017-07-17 09:55:02 -070022#include "Extensions.h"
John Reck704bed02015-11-05 09:22:17 -080023
24namespace android {
25namespace uirenderer {
26
27class DeviceInfo {
28 PREVENT_COPY_AND_ASSIGN(DeviceInfo);
29public:
30 // returns nullptr if DeviceInfo is not initialized yet
31 // Note this does not have a memory fence so it's up to the caller
32 // to use one if required. Normally this should not be necessary
33 static const DeviceInfo* get();
34
35 // only call this after GL has been initialized, or at any point if compiled
36 // with HWUI_NULL_GPU
37 static void initialize();
Stan Iliev500a0c32016-10-26 10:30:09 -040038 static void initialize(int maxTextureSize);
John Reck704bed02015-11-05 09:22:17 -080039
John Reck704bed02015-11-05 09:22:17 -080040 int maxTextureSize() const { return mMaxTextureSize; }
John Reck8dc02f92017-07-17 09:55:02 -070041 const DisplayInfo& displayInfo() const { return mDisplayInfo; }
42 const Extensions& extensions() const { return mExtensions; }
43
44 static uint32_t multiplyByResolution(uint32_t in) {
45 auto di = DeviceInfo::get()->displayInfo();
46 return di.w * di.h * in;
47 }
John Reck704bed02015-11-05 09:22:17 -080048
49private:
50 DeviceInfo() {}
51 ~DeviceInfo() {}
52
53 void load();
John Reck8dc02f92017-07-17 09:55:02 -070054 void loadDisplayInfo();
John Reck704bed02015-11-05 09:22:17 -080055
John Reck704bed02015-11-05 09:22:17 -080056 int mMaxTextureSize;
John Reck8dc02f92017-07-17 09:55:02 -070057 DisplayInfo mDisplayInfo;
58 Extensions mExtensions;
John Reck704bed02015-11-05 09:22:17 -080059};
60
61} /* namespace uirenderer */
62} /* namespace android */
63
64#endif /* DEVICEINFO_H */