/* * Copyright (c) 2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef HDI_TEST_DISPLAY_H #define HDI_TEST_DISPLAY_H #include #include "display_device.h" #include "display_gralloc.h" #include "display_type.h" #include "display_test.h" #include "hdi_test_device_common.h" #include "hdi_test_layer.h" namespace OHOS { namespace HDI { namespace DISPLAY { namespace TEST { class HdiTestDisplay { public: HdiTestDisplay(uint32_t id, DeviceFuncs &deviceFunc); virtual ~HdiTestDisplay() {}; int32_t Init(); int32_t GetModeInfoFromId(int32_t id, DisplayModeInfo &modeInfo); std::shared_ptr CreateHdiTestLayer(LayerInfo &info); std::shared_ptr CreateHdiTestLayer(uint32_t w, uint32_t h); int32_t Commit(); int32_t PrepareDisplayLayers(); DisplayModeInfo GetCurrentMode() const { return mCurrentMode; } int32_t RegDisplayVBlankCallback(VBlankCallback cb, void *data); int32_t SetDisplayVsyncEnabled(bool enabled); std::shared_ptr GetLayerFromId(uint32_t id); std::unordered_map> &GetLayers() { return mLayerMaps; } void Clear(); BufferHandle *SnapShot() { DISPLAY_TEST_LOGD("client fb phyaddr %" PRIx64 " virtual addr %p", mCurrentFb->phyAddr, mCurrentFb->virAddr); return mCurrentFb; } private: const DeviceFuncs &GetDeviceFuncs() const { return mDeviceFunc; } int32_t RefreshLayersCompType(); int32_t GetLayersReleaseFence(); uint32_t mActiveModeId = 0; DisplayModeInfo mCurrentMode = { 0 }; uint32_t mId; DeviceFuncs mDeviceFunc = { 0 }; DisplayCapability mCap; std::vector mModes; std::unordered_map> mLayerMaps; std::unique_ptr mClientLayer; BufferHandle *mCurrentFb; bool mNeedFlushFb = false; }; } // OHOS } // HDI } // DISPLAY } // TEST #endif // HDI_TEST_DISPLAY_H