shaderc_pssl.cpp 492 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright 2011-2019 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(const Options& _options, uint32_t _version, const std::string& _code, bx::WriterI* _writer)
  9. {
  10. BX_UNUSED(_options, _version, _code, _writer);
  11. fprintf(stderr, "PSSL compiler is not supported.\n");
  12. return false;
  13. }
  14. const char* getPsslPreamble()
  15. {
  16. return "";
  17. }
  18. } // namespace bgfx