shaderc_pssl.cpp 443 B

1234567891011121314151617
  1. /*
  2. * Copyright 2011-2017 Branimir Karadzic. All rights reserved.
  3. * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  4. */
  5. #include "shaderc.h"
  6. namespace bgfx
  7. {
  8. bool compilePSSLShader(bx::CommandLine& _cmdLine, uint32_t _version, const std::string& _code, bx::WriterI* _writer)
  9. {
  10. BX_UNUSED(_cmdLine, _version, _code, _writer);
  11. fprintf(stderr, "PSSL compiler is not supported.\n");
  12. return false;
  13. }
  14. } // namespace bgfx