forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
17
Kha/Backends/Java/kha/graphics4/IndexBuffer.hx
Normal file
17
Kha/Backends/Java/kha/graphics4/IndexBuffer.hx
Normal file
@ -0,0 +1,17 @@
|
||||
package kha.graphics4;
|
||||
|
||||
class IndexBuffer {
|
||||
public function new(indexCount: Int, usage: Usage, canRead: Bool = false) {}
|
||||
|
||||
public function lock(?start: Int, ?count: Int): Array<Int> {
|
||||
return null;
|
||||
}
|
||||
|
||||
public function unlock(?count: Int): Void {}
|
||||
|
||||
public function set(): Void {}
|
||||
|
||||
public function count(): Int {
|
||||
return 0;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user