Hash :
025aafdf
Author :
Date :
2017-10-30T15:16:37
Make EGL image extensions enableable. BUG=angleproject:1523 Change-Id: I6e890380bafb9f81595ab603996259fe6177e9e0 Reviewed-on: https://chromium-review.googlesource.com/744447 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
//
// Copyright 2016 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.
//
// ImageNULL.cpp:
// Implements the class methods for ImageNULL.
//
#include "libANGLE/renderer/null/ImageNULL.h"
#include "common/debug.h"
namespace rx
{
ImageNULL::ImageNULL(const egl::ImageState &state) : ImageImpl(state)
{
}
ImageNULL::~ImageNULL()
{
}
egl::Error ImageNULL::initialize()
{
return egl::NoError();
}
gl::Error ImageNULL::orphan(const gl::Context *context, egl::ImageSibling *sibling)
{
return gl::NoError();
}
} // namespace rx