forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
16
Kha/Sources/kha/graphics4/GeometryShader.hx
Normal file
16
Kha/Sources/kha/graphics4/GeometryShader.hx
Normal file
@ -0,0 +1,16 @@
|
||||
package kha.graphics4;
|
||||
|
||||
import kha.Blob;
|
||||
|
||||
#if cpp
|
||||
extern class GeometryShader {
|
||||
public function new(sources: Array<Blob>);
|
||||
public function delete(): Void;
|
||||
}
|
||||
#else
|
||||
class GeometryShader {
|
||||
public function new(sources: Array<Blob>) {}
|
||||
|
||||
public function delete(): Void {}
|
||||
}
|
||||
#end
|
Reference in New Issue
Block a user