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