forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
26
Kha/Backends/Node/kha/graphics4/PipelineState.hx
Normal file
26
Kha/Backends/Node/kha/graphics4/PipelineState.hx
Normal file
@ -0,0 +1,26 @@
|
||||
package kha.graphics4;
|
||||
|
||||
import kha.graphics4.FragmentShader;
|
||||
import kha.graphics4.VertexData;
|
||||
import kha.graphics4.VertexShader;
|
||||
import kha.graphics4.VertexStructure;
|
||||
|
||||
class PipelineState extends PipelineStateBase {
|
||||
public function new() {
|
||||
super();
|
||||
}
|
||||
|
||||
public function delete(): Void {}
|
||||
|
||||
public function compile(): Void {}
|
||||
|
||||
public function set(): Void {}
|
||||
|
||||
public function getConstantLocation(name: String): kha.graphics4.ConstantLocation {
|
||||
return new kha.js.graphics4.ConstantLocation();
|
||||
}
|
||||
|
||||
public function getTextureUnit(name: String): kha.graphics4.TextureUnit {
|
||||
return new kha.js.graphics4.TextureUnit();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user