mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-18 16:24:27 -04:00
b2438fc05d
Signed-off-by: xingyanan <xingyanan2@huawei.com> Change-Id: Idee2234c1ccaf6371db50d9ff864fed8e2359ab2 Signed-off-by: xingyanan <xingyanan2@huawei.com>
57 lines
2.4 KiB
C++
57 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) 2022-2022 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 SURFACE_DRAW_H
|
|
#define SURFACE_DRAW_H
|
|
|
|
#include <ui/rs_surface_node.h>
|
|
#include "pixel_map.h"
|
|
|
|
#include "refbase.h"
|
|
#include "wm_common.h"
|
|
#include "draw/canvas.h"
|
|
#include "nocopyable.h"
|
|
#include "pixel_map.h"
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
class SurfaceDraw {
|
|
public:
|
|
SurfaceDraw() = default;
|
|
~SurfaceDraw() = default;
|
|
static bool DrawColor(std::shared_ptr<RSSurfaceNode> surfaceNode, int32_t bufferWidth,
|
|
int32_t bufferHeight, uint32_t color);
|
|
static bool DrawImage(std::shared_ptr<RSSurfaceNode> surfaceNode, int32_t bufferWidth,
|
|
int32_t bufferHeight, const std::string& imagePath);
|
|
static bool DrawImage(std::shared_ptr<RSSurfaceNode> surfaceNode, int32_t bufferWidth,
|
|
int32_t bufferHeight, std::shared_ptr<Media::PixelMap> pixelMap);
|
|
static bool DrawImageRect(std::shared_ptr<RSSurfaceNode> surfaceNode, Rect winRect, sptr<Media::PixelMap> pixelMap,
|
|
uint32_t bkgColor);
|
|
|
|
private:
|
|
static bool DoDraw(uint8_t *addr, uint32_t width, uint32_t height, const std::string& imagePath);
|
|
static bool DoDraw(uint8_t *addr, uint32_t width, uint32_t height, uint32_t color);
|
|
static bool DoDraw(uint8_t *addr, uint32_t width, uint32_t height, std::shared_ptr<Media::PixelMap> pixelMap);
|
|
static sptr<OHOS::Surface> GetLayer(std::shared_ptr<RSSurfaceNode> surfaceNode);
|
|
static sptr<OHOS::SurfaceBuffer> GetSurfaceBuffer(sptr<OHOS::Surface> layer, int32_t bufferWidth,
|
|
int32_t bufferHeight);
|
|
static void DrawPixelmap(Drawing::Canvas &canvas, const std::string& imagePath);
|
|
static std::unique_ptr<OHOS::Media::PixelMap> DecodeImageToPixelMap(const std::string &imagePath);
|
|
static bool DoDrawImageRect(uint8_t *addr, int32_t winWidth, int32_t winHeight, sptr<Media::PixelMap> pixelMap,
|
|
uint32_t color);
|
|
};
|
|
} // Rosen
|
|
} // OHOS
|
|
#endif // SURFACE_DRAW_H
|