Hash :
e2632d24
Author :
Date :
2014-10-17T13:08:51
Changes gl::RenderbufferStorage to rx::RenderbufferImpl BUG=angle:782 Also eliminates Colorbuffer/DepthStencilBuffer and related friends and adds the RenderbufferD3D implementation of RenderbufferImpl. This version fixes problems with the prior CL's handling of render target serial issuance. Change-Id: I7ddfbec1097723d7ea6ce93a9c034f941349108a Reviewed-on: https://chromium-review.googlesource.com/227195 Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Shannon Woods <shannonwoods@chromium.org>
//
// Copyright (c) 2014 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.
//
// RenderbufferImpl.h: Implements the shared methods of the abstract class gl::RenderbufferImpl
#include "libGLESv2/renderer/RenderbufferImpl.h"
namespace rx
{
RenderbufferImpl::RenderbufferImpl()
{
}
RenderbufferImpl::~RenderbufferImpl()
{
}
}