https://github.com/icculus/mojoshader
Use Direct3D shaders with other 3D rendering APIs.
https://github.com/icculus/mojoshader
direct3d metal opengl opengl-es vulkan
Last synced: 19 days ago
JSON representation
Use Direct3D shaders with other 3D rendering APIs.
- Host: GitHub
- URL: https://github.com/icculus/mojoshader
- Owner: icculus
- License: zlib
- Created: 2018-06-19T17:20:36.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-03-09T17:01:07.000Z (about 1 month ago)
- Last Synced: 2025-03-28T06:08:06.284Z (26 days ago)
- Topics: direct3d, metal, opengl, opengl-es, vulkan
- Language: C
- Homepage: https://icculus.org/mojoshader/
- Size: 23.5 MB
- Stars: 162
- Watchers: 7
- Forks: 40
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# MojoShader
https://icculus.org/mojoshader/
MojoShader is a zlib-licensed library to work with Direct3D shaders on
alternate 3D APIs and non-Windows platforms. The primary motivation is
moving shaders to OpenGL languages on the fly. The developer deals with
"profiles" that represent various target languages, such as GLSL or
ARB_*_program.This allows a developer to manage one set of shaders, presumably written
in Direct3D HLSL, and use them across multiple rendering backends. This
also means that the developer only has to worry about one (offline)
compiler to manage program complexity, while MojoShader itself deals with
the reduced complexity of the bytecode at runtime.MojoShader provides both a simple API to convert bytecode to various
profiles, and (optionally) basic glue to rendering APIs to abstract the
management of the shaders at runtime.Work is in progress to allow MojoShader to work as a replacement stack for
the D3DX shader tools. The library already provides a preprocessor and an
assembler to generate bytecode from low-level source, and construction of
a full HLSL compiler is in progress.The library is meant to be statically linked to an application (just add a
few .c files and headers to your build), allows the app to optionally
specify an allocator, and is thread safe (although OpenGL itself is not).
It is meant to be embedded in games with a minimum of fuss.To use this in your project:
- Add mojoshader*.c and mojoshader*.h to your project.
- Compile mojoshader*.c
- If you don't have a C99-compliant compiler, like Microsoft Visual Studio,
you'll need to compile the .c files as C++ to get them to build.
- If you don't have cmake to generate mojoshader_version.h, you can either
add a blank file with that name, or add MOJOSHADER_NO_VERSION_INCLUDE to
your preprocessor definitions.