Package gaia.cu9.ari.gaiaorbit.render
Class RenderingContext
- java.lang.Object
-
- gaia.cu9.ari.gaiaorbit.render.RenderingContext
-
public class RenderingContext extends java.lang.Object
Holds some context information useful when rendering.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RenderingContext.CubemapSide
-
Field Summary
Fields Modifier and Type Field Description RenderingContext.CubemapSide
cubemapSide
Side of the cubemap, if anycom.badlogic.gdx.graphics.glutils.FrameBuffer
fb
In case this is not null, we are using the screenshot or frame output feature.IPostProcessor.PostProcessBean
ppb
The post process bean.float
scaleFactor
Scale factor, the ratio between the diagonal of HD resolution (1280x720) and the current resolution
-
Constructor Summary
Constructors Constructor Description RenderingContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
h()
Gets the heightvoid
set(int w, int h)
Sets the width and heightint
w()
Gets the width
-
-
-
Field Detail
-
ppb
public IPostProcessor.PostProcessBean ppb
The post process bean. It may have no effects enabled.
-
fb
public com.badlogic.gdx.graphics.glutils.FrameBuffer fb
In case this is not null, we are using the screenshot or frame output feature. This is the renderToFile frame buffer.
-
scaleFactor
public float scaleFactor
Scale factor, the ratio between the diagonal of HD resolution (1280x720) and the current resolution
-
cubemapSide
public RenderingContext.CubemapSide cubemapSide
Side of the cubemap, if any
-
-