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

14 lines
313 B
C
Raw Normal View History

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