Rename GPUContext::ClearState to ResetState for constentency
This commit is contained in:
@@ -618,7 +618,16 @@ public:
|
||||
/// <summary>
|
||||
/// Clears the context state.
|
||||
/// </summary>
|
||||
API_FUNCTION() virtual void ClearState() = 0;
|
||||
DEPRECATED("Use ResetState instead")
|
||||
API_FUNCTION() void ClearState()
|
||||
{
|
||||
ResetState();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Resets the context state.
|
||||
/// </summary>
|
||||
API_FUNCTION() virtual void ResetState() = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Flushes the internal cached context state with a command buffer.
|
||||
|
||||
Reference in New Issue
Block a user