yuzu/src/core/hle/kernel/k_trace.h

14 lines
313 B
C
Raw Normal View History

2022-04-23 22:49:07 +04:00
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-03-22 21:51:42 +04:00
#pragma once
namespace Kernel {
2021-06-25 07:18:27 +04:00
using namespace Common::Literals;
2021-03-22 21:51:42 +04:00
constexpr bool IsKTraceEnabled = false;
2021-06-25 07:18:27 +04:00
constexpr std::size_t KTraceBufferSize = IsKTraceEnabled ? 16_MiB : 0;
2021-03-22 21:51:42 +04:00
} // namespace Kernel