blob: b559320ab71ddb4835bb5a8bc8900f00d2312be2 [file] [log] [blame]
Jamie Madill7b57b9d2017-01-13 09:33:38 -05001//
2// Copyright 2016 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6// RenderTargetVk:
7// Wrapper around a Vulkan renderable resource, using an ImageView.
8//
9
10#include "libANGLE/renderer/vulkan/RenderTargetVk.h"
11
12namespace rx
13{
14
15RenderTargetVk::RenderTargetVk()
Jamie Madill4c26fc22017-02-24 11:04:10 -050016 : format(nullptr),
17 image(nullptr),
18 imageView(nullptr),
19 extents(),
20 samples(VK_SAMPLE_COUNT_1_BIT),
21 resource(nullptr)
Jamie Madill7b57b9d2017-01-13 09:33:38 -050022{
23}
24
25} // namespace rx