Advertisement
Kitomas

shaders.hpp as of 2024-01-19

Jan 19th, 2024
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #ifndef _SHADERS_H
  2. #define _SHADERS_H
  3.  
  4.  
  5.  
  6.  
  7. #ifdef _DEBUG
  8. # define VAR_color "color"
  9. # define VAR_position "position"
  10.  
  11. #include "shaders_debug.h"
  12. #else
  13. #include "shaders_release.h"
  14. #endif /* _DEBUG */
  15.  
  16.  
  17.  
  18.  
  19. #endif /* _SHADERS_H */
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement