(int unit, int width, int height)
| 209 | |
| 210 | static public FBOSpecification rgbaAndDepth(int unit, int width, int height) { |
| 211 | return new FBOSpecification(unit, GL_RGBA, width, height, GL_RGBA, GL_BYTE, 8, true, 1, false, false, 1); |
| 212 | } |
| 213 | |
| 214 | static public FBOSpecification rgbaMultisample(int unit, int width, int height) { |
| 215 | return new FBOSpecification(unit, GL_RGBA, width, height, GL_RGBA, GL_BYTE, 8, false, 1, true, false, 1); |
| 216 | } |
no outgoing calls
no test coverage detected