Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ThrowExceptionFromResult()

static void Microsoft.Xna.Framework.Graphics.GraphicsHelpers.ThrowExceptionFromResult ( uint result)
inlinestatic

Definition at line 8 of file GraphicsHelpers.cs.

9 {
10 if (result == 0)
11 {
12 return;
13 }
14 throw GetExceptionFromResult(result);
15 }
static Exception GetExceptionFromResult(uint result)

References Microsoft.Xna.Framework.Graphics.GraphicsHelpers.GetExceptionFromResult().