diff options
Diffstat (limited to 'gfx/angle/src/libANGLE/renderer/ImageImpl.h')
-rwxr-xr-x | gfx/angle/src/libANGLE/renderer/ImageImpl.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gfx/angle/src/libANGLE/renderer/ImageImpl.h b/gfx/angle/src/libANGLE/renderer/ImageImpl.h new file mode 100755 index 000000000..e48f1946a --- /dev/null +++ b/gfx/angle/src/libANGLE/renderer/ImageImpl.h @@ -0,0 +1,32 @@ +// +// Copyright (c) 2015 The ANGLE Project Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. +// + +// ImageImpl.h: Defines the rx::ImageImpl class representing the EGLimage object. + +#ifndef LIBANGLE_RENDERER_IMAGEIMPL_H_ +#define LIBANGLE_RENDERER_IMAGEIMPL_H_ + +#include "common/angleutils.h" +#include "libANGLE/Error.h" + +namespace egl +{ +class ImageSibling; +} + +namespace rx +{ +class ImageImpl : angle::NonCopyable +{ + public: + virtual ~ImageImpl() {} + virtual egl::Error initialize() = 0; + + virtual gl::Error orphan(egl::ImageSibling *sibling) = 0; +}; +} + +#endif // LIBANGLE_RENDERER_IMAGEIMPL_H_ |