From 71391cf1cc890fc96732391c6dae767cc91f3622 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 11 Dec 2025 16:38:28 +0100 Subject: [PATCH] Fix deprecated tag placement --- Source/Engine/Graphics/GPUContext.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Engine/Graphics/GPUContext.h b/Source/Engine/Graphics/GPUContext.h index 5f4bd8020..1144d6f49 100644 --- a/Source/Engine/Graphics/GPUContext.h +++ b/Source/Engine/Graphics/GPUContext.h @@ -189,7 +189,7 @@ public: /// [Deprecated in v1.10] /// /// true if depth buffer is binded; otherwise, false. - DEPRECATED("IsDepthBufferBinded has been deprecated and will be removed in ") + DEPRECATED("IsDepthBufferBinded has been deprecated and will be removed in future") virtual bool IsDepthBufferBinded() = 0; public: @@ -617,9 +617,9 @@ public: /// /// Clears the context state. + /// [Deprecated in v1.12] /// - DEPRECATED("Use ResetState instead") - API_FUNCTION() void ClearState() + API_FUNCTION() DEPRECATED("Use ResetState instead") void ClearState() { ResetState(); }