StarsX / spvgen

Library to Generate SPIR-V Binary

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SPVGEN

SPVGEN is a library to generate SPIR-V binary. It integrates glslang and SPIRV-Tools.

APIs

The APIs are listed in include/spvgen.h.

Initialization

  • InitSpvGen()

Convert GLSL to SPIR-V binary

  • spvCompileAndLinkProgram()
  • spvGetSpirvBinaryFromProgram()
  • spvDestroyProgram()

Assemble SPIR-V

  • spvAssembleSpirv()

Disassemble SPIR-V

  • spvDisassembleSpirv()

Optimize SPIR-V

  • spvOptimizeSpirv()
  • spvFreeBuffer()

Validate SPIR-V

  • spvValidateSpirv()

How to build

SPVGEN is now built as part of the AMDVLK build system, but is not built by default.

First, follow the AMDVLK instructions to get sources and use cmake to set up the build.

Then, use

cd spvgen/external && python fetch_external_sources.py
cd xgl && cmake --build {build directory} --target spvgen

About

Library to Generate SPIR-V Binary

License:MIT License


Languages

Language:C++ 95.5%Language:CMake 4.5%