blob: 0956a5efc2586d8b0b0b2e3df566c6e25e59fbc5 [file] [log] [blame]
Jamie Madill9e54b5a2016-05-25 12:57:39 -04001//
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// ImageVk.cpp:
7// Implements the class methods for ImageVk.
8//
9
10#include "libANGLE/renderer/vulkan/ImageVk.h"
11
12#include "common/debug.h"
13
14namespace rx
15{
16
17ImageVk::ImageVk() : ImageImpl()
18{
19}
20
21ImageVk::~ImageVk()
22{
23}
24
25egl::Error ImageVk::initialize()
26{
27 UNIMPLEMENTED();
28 return egl::Error(EGL_BAD_ACCESS);
29}
30
31gl::Error ImageVk::orphan(egl::ImageSibling *sibling)
32{
33 UNIMPLEMENTED();
34 return gl::Error(GL_INVALID_OPERATION);
35}
36
37} // namespace rx