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.

Cubxity

Members
  • Joined

  • Last visited

  1. Hey there, I am trying to store the last 20 frames of the display using FrameBuffer currently I am storing them in a queue. if frame queue is more than 20, will remove first queue every tick and every tick it will add a FrameBuffer from (Minecraft#getFrameBuffer) When I want to get last second of footage, I render every FrameBuffer using this method private synchronized static BufferedImage getImageFromFrameBuffer(Framebuffer buffer, int width, int height) { int k = buffer.framebufferTextureWidth * buffer.framebufferTextureHeight; if (pixelBuffer == null || pixelBuffer.capacity() < k) { pixelBuffer = BufferUtils.createIntBuffer(k); pixelValues = new int[k]; } GL11.glPixelStorei(GL11.GL_PACK_ALIGNMENT, 1); GL11.glPixelStorei(GL11.GL_UNPACK_ALIGNMENT, 1); pixelBuffer.clear(); GlStateManager.bindTexture(buffer.framebufferTexture); GL11.glGetTexImage(GL11.GL_TEXTURE_2D, 0, GL12.GL_BGRA, GL12.GL_UNSIGNED_INT_8_8_8_8_REV, pixelBuffer); pixelBuffer.get(pixelValues); TextureUtil.processPixelValues(pixelValues, buffer.framebufferTextureWidth, buffer.framebufferTextureHeight); BufferedImage bufferedimage = new BufferedImage(width, height, BufferedImage.TYPE_4BYTE_ABGR); int l = buffer.framebufferTextureHeight - buffer.framebufferHeight; bufferedimage.setRGB(0, 0, width, height, pixelValues, l*buffer.framebufferTextureWidth, buffer.framebufferTextureWidth); return bufferedimage; } But the output frames is not the one I expected, it renders 20 seconds forward not backward that I stored in the queue, is this problem with how i render framebuffer or anything? Help would be appreciated SRC: https://github.com/HypixelCommunityClient/HCC/tree/master/src/main/java/com/hcc/mods/capturex (Licensed under GNU AGPLv3) - Cubxity
  2. Why is it not allowed to make a custom launcher that needs you to put credentials?? There is tons of launcher and Minecraft does not do anything with it like Technic, FTB Launcher, MultiMC and much more
  3. Hey! I am planning to make my own minecraft launcher that has Forge installer built in which you can choose forge version and the launcher installs it for you, Is there any api or something that I can check list of versions and get the forge and install it from my launcher?
  4. What forum I can go to? Spigotmc? or what
  5. im making modifications directly to client. Im not making mod. + 1.8.8 is gud for pvping
  6. i editted Xms and Xmx value for fernflower using Notepad++
  7. I have tried deleting and decompiled again. When I was setting up forge it works fine tho. set encoding to Cp1252? how?
  8. Hi there, my MCP failed to recompile Minecraft version 1.8.8, I am running Windows 10 64 bit here is the log Could anyone help me find out the problem thanks.

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.