25 lines
549 B
Haxe
25 lines
549 B
Haxe
|
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 compile(): Void {}
|
||
|
|
||
|
public function set(): Void {}
|
||
|
|
||
|
public function getConstantLocation(name: String): kha.graphics4.ConstantLocation {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public function getTextureUnit(name: String): kha.graphics4.TextureUnit {
|
||
|
return null;
|
||
|
}
|
||
|
}
|