LNXSDK/Kha/Sources/kha/graphics4/FragmentShader.hx

14 lines
306 B
Haxe
Raw Permalink Normal View History

2025-01-22 16:18:30 +01:00
package kha.graphics4;
import kha.Blob;
extern class FragmentShader {
public function new(sources: Array<Blob>, files: Array<String>);
public function delete(): Void;
/**
Beware: This function is not portable.
**/
public static function fromSource(source: String): FragmentShader;
}