From f380744c61bcce41c64bcc4c2b65b7aa07227a96 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Mon, 27 Jan 2025 00:46:46 +1000 Subject: [PATCH] android: Fix compilation by adding missing log.h include Adds missing include for common/logging/log.h in gpu.h which was causing compilation failures on Android. This header is needed for logging functionality used in GPU-related operations. The include was previously indirectly available through other headers, but making it explicit improves code clarity and prevents potential future compilation issues. --- src/video_core/gpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index dadfc00bf..86ce52d8d 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -7,6 +7,7 @@ #include "common/bit_field.h" #include "common/common_types.h" +#include "common/logging/log.h" #include "core/hle/service/nvdrv/nvdata.h" #include "video_core/cdma_pusher.h" #include "video_core/framebuffer_config.h"