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