Advertisement
TheBirkIsReal

Untitled

Jun 23rd, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. struct ConfigThing
  2. {
  3.     ConfigThingType type;
  4.     union {
  5.         struct {
  6.             int major, minor;
  7.             int red_bits, green_bits, blue_bits, alpha_bits;
  8.             int depth_bits, stencil_bits;
  9.         } GL;
  10.         struct {
  11.             BarlayDecorateFlag or_whatever;
  12.         } Window;
  13.     }
  14. }
  15.  
  16. void barclay_window_config(ConfigThing *configs, int len)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement