Updated FBO method names

This commit is contained in:
Anuken
2020-03-25 11:06:52 -04:00
parent a1b64900ab
commit 6cc2719ed7
4 changed files with 9 additions and 9 deletions

View File

@@ -183,7 +183,7 @@ public class Schematics implements Loadable{
Tmp.m2.set(Draw.trans());
FrameBuffer buffer = new FrameBuffer((schematic.width + padding) * resolution, (schematic.height + padding) * resolution);
shadowBuffer.beginDraw(Color.clear);
shadowBuffer.begin(Color.clear);
Draw.trans().idt();
Draw.proj().setOrtho(0, 0, shadowBuffer.getWidth(), shadowBuffer.getHeight());
@@ -202,9 +202,9 @@ public class Schematics implements Loadable{
}
});
shadowBuffer.endDraw();
shadowBuffer.end();
buffer.beginDraw(Color.clear);
buffer.begin(Color.clear);
Draw.proj().setOrtho(0, buffer.getHeight(), buffer.getWidth(), -buffer.getHeight());
@@ -231,7 +231,7 @@ public class Schematics implements Loadable{
Draw.flush();
Draw.trans().idt();
buffer.endDraw();
buffer.end();
Draw.proj(Tmp.m1);
Draw.trans(Tmp.m2);