use of org.terasology.rendering.nui.internal.LwjglCanvasRenderer in project Terasology by MovingBlocks.
the class LwjglGraphics method postInitialise.
@Override
public void postInitialise(Context rootContext) {
context.put(RenderingSubsystemFactory.class, new LwjglRenderingSubsystemFactory(bufferPool));
initDisplay();
initOpenGL(context);
context.put(CanvasRenderer.class, new LwjglCanvasRenderer(context));
}
Aggregations