blob: 2bab5d3596cf722d3e0a2157a7c9d41bc657fe8e [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 Reck704bed02015-11-05 09:22:17 -080035 static const DeviceInfo* get();
36
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 Reck56428472018-03-16 17:27:17 -070043
John Reck704bed02015-11-05 09:22:17 -080044private:
Derek Sollenberger17662382018-09-13 14:14:00 -040045 friend class renderthread::RenderThread;
46 static void setMaxTextureSize(int maxTextureSize);
Peiyong Lin1f6aa122018-09-10 16:28:08 -070047
Derek Sollenberger17662382018-09-13 14:14:00 -040048 DeviceInfo();
John Reck704bed02015-11-05 09:22:17 -080049
John Reck704bed02015-11-05 09:22:17 -080050 int mMaxTextureSize;
John Reck8dc02f92017-07-17 09:55:02 -070051 DisplayInfo mDisplayInfo;
Peiyong Lin3bff1352018-12-11 07:56:07 -080052 sk_sp<SkColorSpace> mWideColorSpace;
53 SkColorType mWideColorType;
John Reck704bed02015-11-05 09:22:17 -080054};
55
56} /* namespace uirenderer */
57} /* namespace android */
58
59#endif /* DEVICEINFO_H */