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.

[1.15.2][SOLVED] Rendering Lines in unBatched Environments

Featured Replies

Posted

hello, I am attempting to render lines in a GUI. This will not be possible to achieve with textures. I have attempted to use the methods documented in this for unbatched environments but the methods do not seem to exist this is the documentation https://gist.github.com/williewillus/30d7e3f775fe93c503bddf054ef3f93e.

I further tried to do this using GL11. I have successfully rendered a line but I was unable to change the colour of the line.

This is what I tried in the render method:

GL11.glPushMatrix();
        GL11.glPushAttrib(GL11.GL_COLOR_MATERIAL);
        GL11.glEnable(GL11.GL_BLEND);
        GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
        GL11.glLineWidth(6.0f);
        GL11.glColor3ub((byte)255,(byte)0,(byte)0);
        GL11.glBegin(GL11.GL_LINES);
        GL11.glVertex3d(1, 1, 0);
        GL11.glVertex3d(100, 100, 0);
        GL11.glEnd();
        GL11.glPopMatrix();
        GL11.glPopAttrib();

 

Edited by Papa_Prime

Having messed with this in the past:

1) Do not use GL11 directly, use the wrappers

2) GL11.GL_LINES does not work the way you want or expect (I don't know why and don't care).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • Author

Thanks, I will experiment with other GL modes. I resorted to using GL11 directly because I did not even manage to render it with the wrapper.

Edit: And the line strip works. now to just get it working with the wrappers

Edited by Papa_Prime

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

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.