You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(!texture.validDesc&&!noThrowOnInvalidDesc)thrownewArgumentException("The passed in texture handle does not have a valid descriptor. (This is most commonly cause by the handle referencing a built-in texture such as the system back buffer.)","handle");
840
+
if(!texture.validDesc&&!noThrowOnInvalidDesc)
841
+
thrownewArgumentException("The passed in texture handle does not have a valid descriptor. (This is most commonly cause by the handle referencing a built-in texture such as the system back buffer.)","handle");
if(!buffer.validDesc)thrownewArgumentException("The passed in buffer handle does not have a valid descriptor. (This is most commonly cause by importing the buffer.)","handle");
942
+
if(!buffer.validDesc&&!noThrowOnInvalidDesc)
943
+
thrownewArgumentException("The passed in buffer handle does not have a valid descriptor. (This is most commonly cause by importing the buffer.)","handle");
0 commit comments