blob: 595621573e6eb759107e5e0c799ff7b1daf703bf [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 Reck1bcacfd2017-11-03 10:12:19 -070021#include "utils/Macros.h"
John Reck704bed02015-11-05 09:22:17 -080022
23namespace android {
24namespace uirenderer {
25
Derek Sollenberger17662382018-09-13 14:14:00 -040026namespace renderthread {
27 class RenderThread;
28}
29
John Reck704bed02015-11-05 09:22:17 -080030class DeviceInfo {
31 PREVENT_COPY_AND_ASSIGN(DeviceInfo);
John Reck1bcacfd2017-11-03 10:12:19 -070032
John Reck704bed02015-11-05 09:22:17 -080033public:
John Reck704bed02015-11-05 09:22:17 -080034 static const DeviceInfo* get();
35
Derek Sollenberger17662382018-09-13 14:14:00 -040036 // this value is only valid after the GPU has been initialized and there is a valid graphics
37 // context or if you are using the HWUI_NULL_GPU
38 int maxTextureSize() const;
John Reck8dc02f92017-07-17 09:55:02 -070039 const DisplayInfo& displayInfo() const { return mDisplayInfo; }
John Reck56428472018-03-16 17:27:17 -070040
John Reck704bed02015-11-05 09:22:17 -080041private:
Derek Sollenberger17662382018-09-13 14:14:00 -040042 friend class renderthread::RenderThread;
43 static void setMaxTextureSize(int maxTextureSize);
Peiyong Lin1f6aa122018-09-10 16:28:08 -070044
Derek Sollenberger17662382018-09-13 14:14:00 -040045 DeviceInfo();
John Reck704bed02015-11-05 09:22:17 -080046
John Reck704bed02015-11-05 09:22:17 -080047 int mMaxTextureSize;
John Reck8dc02f92017-07-17 09:55:02 -070048 DisplayInfo mDisplayInfo;
John Reck704bed02015-11-05 09:22:17 -080049};
50
51} /* namespace uirenderer */
52} /* namespace android */
53
54#endif /* DEVICEINFO_H */