forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
28
Kha/Backends/Empty/kha/graphics4/VertexBuffer.hx
Normal file
28
Kha/Backends/Empty/kha/graphics4/VertexBuffer.hx
Normal file
@ -0,0 +1,28 @@
|
||||
package kha.graphics4;
|
||||
|
||||
import kha.arrays.Float32Array;
|
||||
import kha.graphics4.Usage;
|
||||
import kha.graphics4.VertexStructure;
|
||||
import kha.graphics4.VertexData;
|
||||
|
||||
class VertexBuffer {
|
||||
public function new(vertexCount: Int, structure: VertexStructure, usage: Usage, instanceDataStepRate: Int = 0, canRead: Bool = false) {}
|
||||
|
||||
public function lock(?start: Int, ?count: Int): Float32Array {
|
||||
return null;
|
||||
}
|
||||
|
||||
public function unlock(?count: Int): Void {}
|
||||
|
||||
public function stride(): Int {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public function count(): Int {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public function set(offset: Int): Int {
|
||||
return 0;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user