Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Skaertev

Members
  • Joined

  • Last visited

  1. Im trying to render a shader, binding everything and setting the uniforms seems to be working fine (keep in mind i setup my own shader environment since im using a simple blur and minecrafts shader system confuses me). My problem is that whenever i try to draw my shader onto my framebuffer i just get a white screen and the console gives me a OpenGL Error (to be exact: OpenGL API ERROR: 1282 (GL_INVALID_OPERATION error generated. Array object is not active.)) It also tells me that my mistake is on the line where i do: "tesselator.end();", meaning that the drawing of the tesselator seems to wrong. Thats how im currently trying to draw: Tesselator tesselator = Tesselator.getInstance(); BufferBuilder bufferBuilder = tesselator.getBuilder(); GlStateManager._bindTexture(framebuffer.getFramebuffer().texture()); bufferBuilder.begin(VertexFormat.Mode.QUADS, DefaultVertexFormat.POSITION_TEX); bufferBuilder.vertex(0f, height, 0f).uv(0f, 1f).endVertex(); bufferBuilder.vertex(width, height, 0f).uv(1f, 1f).endVertex(); bufferBuilder.vertex(width, 0, 0f).uv(1f, 0f).endVertex(); bufferBuilder.vertex(0f, 0f, 0f).uv(0f, 1f).endVertex(); tesselator.end(); Hope someone can help me, if there are any questions lmk!

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.