Fix deprecated tag placement

This commit is contained in:
Wojtek Figat
2025-12-11 16:38:28 +01:00
parent b5286af526
commit 71391cf1cc

View File

@@ -189,7 +189,7 @@ public:
/// [Deprecated in v1.10] /// [Deprecated in v1.10]
/// </summary> /// </summary>
/// <returns><c>true</c> if depth buffer is binded; otherwise, <c>false</c>.</returns> /// <returns><c>true</c> if depth buffer is binded; otherwise, <c>false</c>.</returns>
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; virtual bool IsDepthBufferBinded() = 0;
public: public:
@@ -617,9 +617,9 @@ public:
/// <summary> /// <summary>
/// Clears the context state. /// Clears the context state.
/// [Deprecated in v1.12]
/// </summary> /// </summary>
DEPRECATED("Use ResetState instead") API_FUNCTION() DEPRECATED("Use ResetState instead") void ClearState()
API_FUNCTION() void ClearState()
{ {
ResetState(); ResetState();
} }