blob: c25f87e13e7ec4eaf42c496f6ec3481e33fba1b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// Copyright 2022 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.cpp: Defines the abstract rx::RenderbufferImpl class.
#include "libANGLE/renderer/RenderbufferImpl.h"
namespace rx
{
angle::Result RenderbufferImpl::onLabelUpdate(const gl::Context *context)
{
return angle::Result::Continue;
}
} // namespace rx
|