summaryrefslogtreecommitdiffstats
path: root/gfx/angle/checkout/src/libANGLE/capture/frame_capture_utils_mock.cpp
blob: f136a3c17d6c3799ba4cfc5d8cc0a891a68d222e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Copyright 2021 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.
//
// frame_capture_utils_mock.cpp:
//   ANGLE frame capture util stub implementation.
//

#include "libANGLE/capture/frame_capture_utils.h"

namespace angle
{
Result SerializeContextToString(const gl::Context *context, std::string *stringOut)
{
    *stringOut = "SerializationNotAvailable";
    return angle::Result::Continue;
}
}  // namespace angle