Advertisement
Ember

Texture Header

Apr 17th, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. struct Header
  2. {
  3.     // Texture information
  4.     UInt Width : 4;
  5.     UInt Height : 4;
  6.     UInt Depth : 4;
  7.     // Pixel information
  8.     UInt Format : 7;
  9.     UInt Components : 2;
  10.     UInt Type : 1;
  11.     UInt Bits : 3;
  12.     // Flags
  13.     UInt Flags : 7;
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement