diff options
Diffstat (limited to 'gfx/angle/checkout/src/libANGLE/capture/FrameCapture_mock.cpp')
-rw-r--r-- | gfx/angle/checkout/src/libANGLE/capture/FrameCapture_mock.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gfx/angle/checkout/src/libANGLE/capture/FrameCapture_mock.cpp b/gfx/angle/checkout/src/libANGLE/capture/FrameCapture_mock.cpp new file mode 100644 index 0000000000..cdb48a1812 --- /dev/null +++ b/gfx/angle/checkout/src/libANGLE/capture/FrameCapture_mock.cpp @@ -0,0 +1,33 @@ +// +// Copyright 2019 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. +// +// FrameCapture_mock.cpp: +// ANGLE mock Frame capture implementation. +// + +#include "libANGLE/capture/FrameCapture.h" + +#if ANGLE_CAPTURE_ENABLED +# error Frame capture must be disabled to include this file. +#endif // ANGLE_CAPTURE_ENABLED + +namespace angle +{ +CallCapture::~CallCapture() {} +ParamBuffer::~ParamBuffer() {} +ParamCapture::~ParamCapture() {} +ResourceTracker::ResourceTracker() {} +ResourceTracker::~ResourceTracker() {} + +FrameCapture::FrameCapture() {} +FrameCapture::~FrameCapture() {} +void FrameCapture::onEndFrame(const gl::Context *context) {} +void FrameCapture::onMakeCurrent(const gl::Context *context, const egl::Surface *drawSurface) {} +void FrameCapture::onDestroyContext(const gl::Context *context) {} +void FrameCapture::replay(gl::Context *context) {} + +FrameCaptureShared::FrameCaptureShared() {} +FrameCaptureShared::~FrameCaptureShared() {} +} // namespace angle |