Removed stride and .configure. Mapped object view updates are now 50% faster. [Riven]

org.lwjgl.util.mapped.PrintBytecode is now functional. [Riven]
This commit is contained in:
Ioannis Tsakpinis 2011-07-13 22:15:25 +00:00
parent f0766fb6c4
commit 1f305d514a
11 changed files with 65 additions and 146 deletions

View file

@ -45,9 +45,9 @@ public class MappedSet3 {
public int view;
void view(int view) {
MappedHelper.put_view(this.a, view);
MappedHelper.put_view(this.b, view);
MappedHelper.put_view(this.c, view);
MappedHelper.put_view(this.a, view, this.a.sizeof);
MappedHelper.put_view(this.b, view, this.b.sizeof);
MappedHelper.put_view(this.c, view, this.c.sizeof);
}
public void next() {