diff options
Diffstat (limited to 'gfx/angle/checkout/src/libANGLE/renderer/FramebufferImpl.cpp')
-rw-r--r-- | gfx/angle/checkout/src/libANGLE/renderer/FramebufferImpl.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gfx/angle/checkout/src/libANGLE/renderer/FramebufferImpl.cpp b/gfx/angle/checkout/src/libANGLE/renderer/FramebufferImpl.cpp new file mode 100644 index 0000000000..1cef167d9d --- /dev/null +++ b/gfx/angle/checkout/src/libANGLE/renderer/FramebufferImpl.cpp @@ -0,0 +1,18 @@ +// +// 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. +// +// FramebufferImpl.cpp: Implements the class methods for FramebufferImpl. + +#include "libANGLE/renderer/FramebufferImpl.h" + +namespace rx +{ + +angle::Result FramebufferImpl::onLabelUpdate(const gl::Context *context) +{ + return angle::Result::Continue; +} + +} // namespace rx |