Guest User

Untitled

a guest
Apr 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // Nonnumeric values cannot be added to a cbuffer.
  2. Texture2D gDiffuseMap;
  3.  
  4. //Simple samplerstate
  5. SamplerState linearSampler
  6. {
  7. Filter = MIN_MAG_MIP_LINEAR;
  8. AddressU = Wrap;
  9. AddressV = Wrap;
  10. };
Add Comment
Please, Sign In to add comment