forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
12
Kha/Sources/kha/graphics4/IndexBuffer.hx
Normal file
12
Kha/Sources/kha/graphics4/IndexBuffer.hx
Normal file
@ -0,0 +1,12 @@
|
||||
package kha.graphics4;
|
||||
|
||||
import kha.arrays.Uint32Array;
|
||||
|
||||
extern class IndexBuffer {
|
||||
public function new(indexCount: Int, usage: Usage, canRead: Bool = false);
|
||||
public function delete(): Void;
|
||||
public function lock(?start: Int, ?count: Int): Uint32Array;
|
||||
public function unlock(?count: Int): Void;
|
||||
public function set(): Void;
|
||||
public function count(): Int;
|
||||
}
|
Reference in New Issue
Block a user