1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/*
* Copyright (C) 2022-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/os_interface/windows/d3dkmthk_wrapper.h"
namespace NEO {
namespace GdiLogging {
#if defined(_RELEASE_INTERNAL) || (_DEBUG)
constexpr bool gdiLoggingSupport = true;
#else
constexpr bool gdiLoggingSupport = false;
#endif
template <typename Param>
void logEnter(Param param);
template <typename Param>
void logExit(NTSTATUS status, Param param);
void init();
void close();
} // namespace GdiLogging
} // namespace NEO
|