0
votes
0answers
25 views

OpenGL - Getting The Display Color Bits

I'm looking at the LWJGL wiki for taking a screenshot (found here) and I noticed the comment Assuming a 32-bit display with a byte each for red, green, blue, and alpha. in this code: ...
0
votes
1answer
27 views

How can I properly use bind() on a subImage?

I'm having a lot of trouble using the Slick2D bind() functionality and then trying to draw an image in OpenGL. I'm using an Image I obtained from getSubImage. If I use the graphics.drawImage() method ...
0
votes
1answer
66 views

Image.getGraphics() causing crash

Whenever I use the method getGraphics() from org.newdawn.slick.Image in fullscreen mode, it causes a crash. It works perfectly fine in windowed mode, and I've tried doing stuff like Graphics g = new ...
0
votes
0answers
64 views

lwjgl and slick-util rendering text

Let me start with I can't find a Slick2d.jar file anywhere on the internet furthermore my project is not necessarily always going to be in 2d so I would prefer to use slick-util since that is ...
2
votes
0answers
85 views

“java.lang.NoSuchMethodError” Exception when drawing text to screen [closed]

When I'm drawing text to the screen, I seem to get a NoSuchMethodError exception. I don't understand why.. Font f = new Font("Times New Roman", Font.BOLD, 20); UnicodeFont uf = new UnicodeFont(f); ...
0
votes
0answers
83 views

Slick2D - Graphics:oval - not rendering THICK oval properly

I want to use the Graphics class of Slick2D to render a thick oval by the method Graphics:oval but it only renders it properly with a line width of 1. When i use a thicker line width via ...
0
votes
1answer
108 views

lwjgl fps drawing issue

I'm having some troubles while trying to trace FPS on the screen using LWJGL. What's wrong in my code? I've got this all the time: Exception in thread "main" java.lang.NullPointerException at ...
0
votes
1answer
156 views

Text field using OpenGL

So, I'm new to OpenGL and trying to create a 2D Multiplayer game, I know how to do all of the networking, although the graphics portion is honestly kicking my buttox. I have tried looking at NiftyGUI ...
0
votes
1answer
29 views

Random outofboundsexception being thrown for no reason?

I'm using LWJGL and Slick2D for a game I'm making. I can't seem to get it to draw the way I want it to be draw so I came up with an idea just to make my own drawing method. Basically it takes a image, ...
0
votes
1answer
138 views

Transparent background behind font

With LWJGL and OpenGL, I want to draw a textured rectangle. Above that, I want to write some Text using the Slick Library. My Problem is that when I draw the Text before the rectangle, the font has ...
0
votes
0answers
104 views

LWJGL scrolling up and down

So I am trying to make a scrolling system in LWJGL and Slick2D that scrolls items up and down in order: import java.util.ArrayList; import org.newdawn.slick.AngelCodeFont; import ...
-1
votes
1answer
69 views

OpenGL incorrect rendering basic textures [closed]

texture.bind(); glBegin(GL_QUADS); glTexCoord2f(0, 0); glVertex2i(1, 1); glTexCoord2f(0, 1); glVertex2i(1, 720); glTexCoord2f(1, 1); ...
0
votes
2answers
1k views

No OpenGL context found in the current thread, how do i fix this error?

I'm working on a card game, and currently have a good foundation but I'm running into an error when I run it in eclipse. I'm also using slick 2d. I can't post a picture yet so here is the error from ...
0
votes
4answers
658 views

Textures not binding in OpenGL (LWJGL/Slick-util)

I have a problem with what seems to be binding the textures to a shape. When I do so, I get a white shape of the correct dimensions, the color given to it by Color.white.bind(). GraphicsManager.java ...
0
votes
2answers
90 views

Why do I need to disable GL_TEXTURE_2D after drawing string in order for shapes to render?

I'm using the Slick2D library in order to render text to the screen but in order to render gl shapes like Rect, I need to first disable GL_TEXTURE_2D. I'm just curious as to why that is needed. Why ...
2
votes
0answers
100 views

One Slick texture is blurry, one not

I want to bind two different textures to a cube using the Texture class of Slick. The problem is that the first Texture I bind to the cube is shown correct, namely pixelwise but the other one I bind ...
1
vote
2answers
229 views

lwjgl and slick - rotate slick texture

I am creating a program which draws an object, which needs to "point" toward the mouse. To do so I want to draw the image rotated. I have this code for drawing the object: ...
1
vote
1answer
289 views

image vs texture size LWJGL

First Scenerio Loaded a texture with Stick-util.jar, where the image size = 50x50 & texture size =64x64. Bound the texture & drew a Quad of size 64x64. And gives out an Image of size 50x50. ...
1
vote
1answer
263 views

On slick or LWJGL, how do you display many lines of Unicode font fast?

I'm having trouble displaying Unicode font on opengl. I need to show like 20 lines of Unicode font text on my game and it has to be dynamically loaded(since the text is Japanese). The only unicode ...
1
vote
2answers
324 views

java.io.IOException Difficulty when adding “player” texture into screen

I get this strange error from loading "Player.png" file from the Player Class. I understand that my organization of the code is very sloppy and the methods I use are terrible. half of the code is ...