GRContext.ResetContext Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ResetContext(GRBackendState) |
Informs the context that the state was modified and should resend. |
ResetContext(GRGlBackendState) |
Informs the context that the state was modified and should resend. |
ResetContext(UInt32) |
Informs the context that the state was modified and should resend. |
ResetContext(GRBackendState)
Informs the context that the state was modified and should resend.
public void ResetContext (SkiaSharp.GRBackendState state = SkiaSharp.GRBackendState.All);
Parameters
- state
- GRBackendState
Flags to control what is reset.
Remarks
The context normally assumes that no outsider is setting state within the underlying 3D API's context/device/whatever. This method shouldn't be called frequently for good performance.
Applies to
ResetContext(GRGlBackendState)
Informs the context that the state was modified and should resend.
public void ResetContext (SkiaSharp.GRGlBackendState state);
Parameters
- state
- GRGlBackendState
Flags to control what is reset.
Remarks
The context normally assumes that no outsider is setting state within the underlying 3D API's context/device/whatever. This method shouldn't be called frequently for good performance.
Applies to
ResetContext(UInt32)
Informs the context that the state was modified and should resend.
public void ResetContext (uint state);
Parameters
- state
- UInt32
Flags to control what is reset.
Remarks
The context normally assumes that no outsider is setting state within the underlying 3D API's context/device/whatever. This method shouldn't be called frequently for good performance.