includes.hlsl 244 B

123456789101112131415
  1. #include "toinclude.hlsl"
  2. #include "..\toinclude2.hlsl"
  3. #include "\for_includes_test\toinclude3.hlsl"
  4. int func1(int b){
  5. return includedFunc(b);
  6. }
  7. int func2(int d){
  8. return includedFunc2(d);
  9. }
  10. int func3(int f){
  11. return includedFunc3(f);
  12. }