blob: 353939f73b690fbf02bd7ec269869a104cb3b5da [file] [log] [blame]
Greg Daniel8cd3edf2017-01-09 14:15:41 -05001/*
2 * Copyright (C) 2017 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
17#pragma once
18
19#include "Layer.h"
20
21#include <SkSurface.h>
22
23namespace android {
24namespace uirenderer {
25/**
26 * A layer has dimensions and is backed by a VkImage.
27 */
28class VkLayer : public Layer {
29public:
30 VkLayer(RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight)
31 : Layer(renderState, Api::Vulkan) {}
32
33 virtual ~VkLayer() {}
34
35 uint32_t getWidth() const override {
36 return mWidth;
37 }
38
39 uint32_t getHeight() const override {
40 return mHeight;
41 }
42
43 void setSize(uint32_t width, uint32_t height) override {
44 mWidth = width;
45 mHeight = height;
46 }
47
48 void setBlend(bool blend) override {
49 mBlend = blend;
50 }
51
52 bool isBlend() const override {
53 return mBlend;
54 }
55
56 sk_sp<SkSurface> getSurface() {
57 return mSurface;
58 }
59
60private:
61 int mWidth;
62 int mHeight;
63 bool mBlend;
64
65 sk_sp<SkSurface> mSurface;
66
67}; // struct VkLayer
68
69}; // namespace uirenderer
70}; // namespace android