blob: 416af179eb211b3f273fbafb8f750ce856150b02 [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>
Peiyong Lin1f6aa122018-09-10 16:28:08 -070020#include <ui/GraphicTypes.h>
John Reck8dc02f92017-07-17 09:55:02 -070021
John Reck8dc02f92017-07-17 09:55:02 -070022#include "Extensions.h"
John Reck1bcacfd2017-11-03 10:12:19 -070023#include "utils/Macros.h"
John Reck704bed02015-11-05 09:22:17 -080024
25namespace android {
26namespace uirenderer {
27
28class DeviceInfo {
29 PREVENT_COPY_AND_ASSIGN(DeviceInfo);
John Reck1bcacfd2017-11-03 10:12:19 -070030
John Reck704bed02015-11-05 09:22:17 -080031public:
32 // returns nullptr if DeviceInfo is not initialized yet
33 // Note this does not have a memory fence so it's up to the caller
34 // to use one if required. Normally this should not be necessary
35 static const DeviceInfo* get();
36
37 // only call this after GL has been initialized, or at any point if compiled
38 // with HWUI_NULL_GPU
39 static void initialize();
Stan Iliev500a0c32016-10-26 10:30:09 -040040 static void initialize(int maxTextureSize);
John Reck704bed02015-11-05 09:22:17 -080041
John Reck704bed02015-11-05 09:22:17 -080042 int maxTextureSize() const { return mMaxTextureSize; }
Peiyong Lin1f6aa122018-09-10 16:28:08 -070043 ui::Dataspace getTargetDataSpace() const { return mTargetDataSpace; }
44 ui::PixelFormat getTargetPixelFormat() const { return mTargetPixelFormat; }
John Reck8dc02f92017-07-17 09:55:02 -070045 const DisplayInfo& displayInfo() const { return mDisplayInfo; }
46 const Extensions& extensions() const { return mExtensions; }
47
48 static uint32_t multiplyByResolution(uint32_t in) {
49 auto di = DeviceInfo::get()->displayInfo();
50 return di.w * di.h * in;
51 }
John Reck704bed02015-11-05 09:22:17 -080052
John Reck56428472018-03-16 17:27:17 -070053 static DisplayInfo queryDisplayInfo();
54
John Reck704bed02015-11-05 09:22:17 -080055private:
Peiyong Lin1f6aa122018-09-10 16:28:08 -070056 static void queryCompositionPreference(ui::Dataspace* dataSpace,
57 ui::PixelFormat* pixelFormat);
58
John Reck704bed02015-11-05 09:22:17 -080059 DeviceInfo() {}
60 ~DeviceInfo() {}
61
62 void load();
63
John Reck704bed02015-11-05 09:22:17 -080064 int mMaxTextureSize;
John Reck8dc02f92017-07-17 09:55:02 -070065 DisplayInfo mDisplayInfo;
66 Extensions mExtensions;
Peiyong Lin1f6aa122018-09-10 16:28:08 -070067 // TODO(lpy) Replace below with android_ prefix types.
68 ui::Dataspace mTargetDataSpace;
69 ui::PixelFormat mTargetPixelFormat;
John Reck704bed02015-11-05 09:22:17 -080070};
71
72} /* namespace uirenderer */
73} /* namespace android */
74
75#endif /* DEVICEINFO_H */