(int pass, float partialTicks, long finishTimeNano)
| 4215 | } |
| 4216 | |
| 4217 | public static void beginRenderPass(int pass, float partialTicks, long finishTimeNano) |
| 4218 | { |
| 4219 | if (!isShadowPass) |
| 4220 | { |
| 4221 | EXTFramebufferObject.glBindFramebufferEXT(36160, dfb); |
| 4222 | GL11.glViewport(0, 0, renderWidth, renderHeight); |
| 4223 | activeDrawBuffers = null; |
| 4224 | ShadersTex.bindNSTextures(defaultTexture.getMultiTexID()); |
| 4225 | useProgram(ProgramTextured); |
| 4226 | checkGLError("end beginRenderPass"); |
| 4227 | } |
| 4228 | } |
| 4229 | |
| 4230 | public static void setViewport(int vx, int vy, int vw, int vh) |
| 4231 | { |
no test coverage detected