blob: e9664d04b7a5aae275b4cd16f3a4cf07f7df03f9 [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
Greg Daniel45ec62b2017-01-04 14:27:00 -050021#include <SkImage.h>
Greg Daniel8cd3edf2017-01-09 14:15:41 -050022
23namespace android {
24namespace uirenderer {
25/**
26 * A layer has dimensions and is backed by a VkImage.
27 */
28class VkLayer : public Layer {
29public:
sergeyv3e9999b2017-01-19 15:37:02 -080030 VkLayer(RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight,
Derek Sollenberger551d08e2018-04-20 16:13:31 -040031 sk_sp<SkColorFilter> colorFilter, int alpha, SkBlendMode mode, bool blend)
sergeyv3e9999b2017-01-19 15:37:02 -080032 : Layer(renderState, Api::Vulkan, colorFilter, alpha, mode)
33 , mWidth(layerWidth)
34 , mHeight(layerHeight)
35 , mBlend(blend) {}
Greg Daniel8cd3edf2017-01-09 14:15:41 -050036
37 virtual ~VkLayer() {}
38
John Reck1bcacfd2017-11-03 10:12:19 -070039 uint32_t getWidth() const override { return mWidth; }
Greg Daniel8cd3edf2017-01-09 14:15:41 -050040
John Reck1bcacfd2017-11-03 10:12:19 -070041 uint32_t getHeight() const override { return mHeight; }
Greg Daniel8cd3edf2017-01-09 14:15:41 -050042
43 void setSize(uint32_t width, uint32_t height) override {
44 mWidth = width;
45 mHeight = height;
46 }
47
John Reck1bcacfd2017-11-03 10:12:19 -070048 void setBlend(bool blend) override { mBlend = blend; }
Greg Daniel8cd3edf2017-01-09 14:15:41 -050049
John Reck1bcacfd2017-11-03 10:12:19 -070050 bool isBlend() const override { return mBlend; }
Greg Daniel8cd3edf2017-01-09 14:15:41 -050051
John Reck1bcacfd2017-11-03 10:12:19 -070052 sk_sp<SkImage> getImage() { return mImage; }
Greg Daniel8cd3edf2017-01-09 14:15:41 -050053
Greg Daniel45ec62b2017-01-04 14:27:00 -050054 void updateTexture();
55
56 // If we've destroyed the vulkan context (VkInstance, VkDevice, etc.), we must make sure to
57 // destroy any VkImages that were made with that context.
58 void onVkContextDestroyed();
59
Greg Daniel8cd3edf2017-01-09 14:15:41 -050060private:
61 int mWidth;
62 int mHeight;
63 bool mBlend;
64
John Reck1bcacfd2017-11-03 10:12:19 -070065 sk_sp<SkImage> mImage;
Greg Daniel8cd3edf2017-01-09 14:15:41 -050066
John Reck1bcacfd2017-11-03 10:12:19 -070067}; // struct VkLayer
Greg Daniel8cd3edf2017-01-09 14:15:41 -050068
John Reck1bcacfd2017-11-03 10:12:19 -070069}; // namespace uirenderer
70}; // namespace android