@ -6,12 +6,17 @@ add_library(gpu_logging STATIC
gpu_logging.h
gpu_state_capture.cpp
gpu_state_capture.h
freedreno_debug.cpp
freedreno_debug.h
qualcomm_debug.cpp
qualcomm_debug.h
)
if(ANDROID)
target_sources(gpu_logging PRIVATE
endif()
target_link_libraries(gpu_logging PUBLIC common)
@ -1,6 +1,8 @@
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
#ifdef ANDROID
#include "video_core/gpu_logging/freedreno_debug.h"
#include "common/logging/log.h"
@ -46,3 +48,5 @@ std::string FreedrenoDebugger::GetBreadcrumbs() {
}
} // namespace GPU::Logging::Freedreno
#endif // ANDROID
@ -3,6 +3,8 @@
#pragma once
#include <string>
namespace GPU::Logging::Freedreno {
@ -26,3 +28,5 @@ private:
};