1 //
2 // Copyright 2022 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
6 // osx_backtrace.cpp:
7 // Implements functions to output the backtrace from the ANGLE code during execution on OSX.
8 //
9
10 #include "common/backtrace_utils.h"
11
12 namespace angle
13 {
14
15 // It is possible to refactor the implementation of printing the backtrace information from the
16 // PrintStackBacktrace() function.
printBacktraceInfo(BacktraceInfo backtraceInfo)17 void printBacktraceInfo(BacktraceInfo backtraceInfo) {}
18
19 } // namespace angle
20