blob: 0e3f11960ddcbe6569cbbd0aa171b75f023cc376 [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
Peiyong Lin3bff1352018-12-11 07:56:07 -080019#include <SkImageInfo.h>
John Reck8dc02f92017-07-17 09:55:02 -070020#include <ui/DisplayInfo.h>
21
John Reck1bcacfd2017-11-03 10:12:19 -070022#include "utils/Macros.h"
John Reck704bed02015-11-05 09:22:17 -080023
24namespace android {
25namespace uirenderer {
26
Derek Sollenberger17662382018-09-13 14:14:00 -040027namespace renderthread {
28 class RenderThread;
29}
30
John Reck704bed02015-11-05 09:22:17 -080031class DeviceInfo {
32 PREVENT_COPY_AND_ASSIGN(DeviceInfo);
John Reck1bcacfd2017-11-03 10:12:19 -070033
John Reck704bed02015-11-05 09:22:17 -080034public:
John Reckcf185f52019-04-11 16:11:24 -070035 static DeviceInfo* get();
John Reck704bed02015-11-05 09:22:17 -080036
Derek Sollenberger17662382018-09-13 14:14:00 -040037 // this value is only valid after the GPU has been initialized and there is a valid graphics
38 // context or if you are using the HWUI_NULL_GPU
39 int maxTextureSize() const;
John Reck8dc02f92017-07-17 09:55:02 -070040 const DisplayInfo& displayInfo() const { return mDisplayInfo; }
Peiyong Lin3bff1352018-12-11 07:56:07 -080041 sk_sp<SkColorSpace> getWideColorSpace() const { return mWideColorSpace; }
42 SkColorType getWideColorType() const { return mWideColorType; }
John Reckcf185f52019-04-11 16:11:24 -070043 float getMaxRefreshRate() const { return mMaxRefreshRate; }
44
45 void onDisplayConfigChanged();
John Reck56428472018-03-16 17:27:17 -070046
John Reck704bed02015-11-05 09:22:17 -080047private:
Derek Sollenberger17662382018-09-13 14:14:00 -040048 friend class renderthread::RenderThread;
49 static void setMaxTextureSize(int maxTextureSize);
Peiyong Lin1f6aa122018-09-10 16:28:08 -070050
Derek Sollenberger17662382018-09-13 14:14:00 -040051 DeviceInfo();
John Reck704bed02015-11-05 09:22:17 -080052
John Reck704bed02015-11-05 09:22:17 -080053 int mMaxTextureSize;
John Reck8dc02f92017-07-17 09:55:02 -070054 DisplayInfo mDisplayInfo;
Peiyong Lin3bff1352018-12-11 07:56:07 -080055 sk_sp<SkColorSpace> mWideColorSpace;
56 SkColorType mWideColorType;
John Reckcf185f52019-04-11 16:11:24 -070057 const float mMaxRefreshRate;
John Reck704bed02015-11-05 09:22:17 -080058};
59
60} /* namespace uirenderer */
61} /* namespace android */
62
63#endif /* DEVICEINFO_H */