mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 23:55:39 +00:00
1d3a9fb2d6
D3DCompile successfully compiles shaders fxc.exe doesn't. As a bonus the DirectX SDK is no longer required (it includes fxc.exe). Signed-off-by: Elias Naur <mail@eliasnaur.com>
10 lines
162 B
Go
10 lines
162 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
// +build !windows
|
|
|
|
package main
|
|
|
|
func compileHLSL(src, entry, profile string) ([]byte, error) {
|
|
return nil, nil
|
|
}
|