1
vote
1answer
23 views

Displaying texture in spritesheet based on ID's

I've been trying to display blocks on screen, each with different textures. I've got the spritesheet set up as well as the code. But I can't manage to get specific coordinates in the spritesheet, I ...
-1
votes
1answer
28 views

LWJGL - not all display lists rendering

I'm working on a Minecraft like game. I create display list for each 16x16x16 chunk. It works fine. But when I'm trying to add block selection it's invisible. It appears only when I'm at some random ...
0
votes
0answers
24 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: ...
-1
votes
2answers
68 views

Few questions regarding OpenGL (culling and optimization) in a cube-based voxel engine

I'm using the LWJGL to create a Minecraft like voxel engine, but I'm running in to some difficulties with optimization. Now, obviously culling will probably have a great positive impact on ...
0
votes
1answer
23 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 ...
1
vote
2answers
38 views

can't render shape in openGL

I was trying to follow example codes to simply display a rectangle on a black background, but it didn't seem to be displaying. What I did was private static void initGL(){ ...
-3
votes
0answers
20 views

LWJGL program makes my computer stress [closed]

I have a java program that I made with the LWJGL library. Everything is fine when I run the program, but after some time (when the program isn't even running), my computer is dead. The performance of ...
-1
votes
1answer
34 views

Why won't glVertexPointer render the same content as glBegin/glEnd?

I'm attempting to write some simple test programs in LWJGL. I've constructed a ByteBuffer object full of floating point values representing a 2D grid of points. When I render the grid using ...
0
votes
1answer
24 views

Black screen in LWJGL

I'm currently porting a game of which the code is very obfuscated due to porting from C to Java. My problem is that some users report a black screen and no other problems (sound is working fine ...
0
votes
1answer
25 views

Java LWJGL - Creating a Grid of Squares

(The colored squares are just positions that have been added to an array to be drawn) I am having problems creating a grid of squares in Java. As you can see in the picture, it appears as if the ...
0
votes
1answer
55 views

Drawing a texture to a framebuffer distorts the texture

I'm using the LWJGL OpenGL bindings for java and I want to draw textures to a framebuffer so I can render textures that are always used together at the same time. I followed the tutorial on the LWJGL ...
0
votes
0answers
41 views

OpenGL vertex buffer object not drawing on Linux

I'm trying to run some LWJGL code to display a single square on the screen. Here's the code I'm using: import java.nio.FloatBuffer; import org.lwjgl.BufferUtils; import org.lwjgl.LWJGLException; ...
1
vote
0answers
39 views

Strange Vertical Bars appear when using LWJGL on Windows

I'm writing a game in java that uses LWJGL's native OpenGL bindings to render the game graphics in OpenGL. When I run the game on Linux (tested on 2 different computers with different graphics cards), ...
2
votes
1answer
38 views

My cube in lwjgl doesn't render correctly

I followed the tutorial for OpenGL found here as provided by the top answer to this question but my cube refuses to render the front and back faces, all other faces render, same problem with a ...
0
votes
2answers
51 views

OpenGL Use shader as filter

What is the standard procedure for using as a sort of filter in OpenGL? When I say filter I mean stuff like edge detection. For example, say I want to apply a SSAO filter to a FBO. Do I bind the FBO ...
0
votes
1answer
32 views

LWJGL - White border on my 3D quads when they are like 10f away from camera pos

I get weird white borders on my 3D quads when they are a little ways away from the camera position and when they are close the borders disappear...
0
votes
0answers
14 views

LWJGL glTranslatef error with negative value

I'm getting this weird issue while using glTranslatef. I have a Camera object, cam, which just holds x, y, and z values. Upon calling glTranslatef(cam.getX(), cam.getY(), cam.getZ()), everything ...
0
votes
1answer
35 views

visual error with adding bullets from a list with lwjgl and openGL with a for loop

So I'm learning openGL with lwjgl and everything's fine until I add a way to shoot. Upon pressing space, a bullet is created and added to a list of bullets. Then when I go to render it, I call for ...
0
votes
0answers
24 views

Billboarding in LWJGL

I'm making a "2.5D" game with a 3d and 2d items. I have created the 3d world and am now working on the 2d items. I've looked all over for billboarding tutorials, but none of them seemed to work ...
0
votes
0answers
53 views

Jogl coordinates doubled and negative

I am kind of new to OpenGl, and I have run into a very frustrating problem. I have a display, and on that display I am drawing a 3D cube, and using a "projection" to view it. In my render loop, I've ...
0
votes
0answers
30 views

LWJGL Display Lists Now showing up when being called

I just started using display lists (i know they are outdated but VBOs are too hard and complicated for me) and I compile some display lists to draw blocks and when I call them they dont show up... ...
0
votes
1answer
28 views

LWJGL OpenGL application limited at ~35 fps

I ported a volume renderer from c++ using glm and glut to LWJGL, java. The volume renderer uses a shader with a 3d texture. For some reason though the fps sticks at ~35 fps. I tried trimming the ...
0
votes
1answer
21 views

Using glArrayElement with LWJGL

I'm following along with the OpenGL tutorial found here. I'm on chapter 2 right now and it's going over the advantages of using glArrayElement to render objects. Currently, my code is as follows: ...
-2
votes
0answers
37 views

What's the best way to learn how to use OpenGL/Lwjgl properly? [closed]

I've been programming for a little over 2 years (mostly java but I'm familiar with C# and a few other languages) and I'm wanting to get into LWJGL (OpenGL) and so naturally I went and googled around ...
0
votes
1answer
40 views

Simple LWJGL program displays nothing

I gave Archsynthetics' primer and Hello triangle chapters a read and decided to jump in with LWJGL. When I didn't get anything on the screen after my first attempt, I tried again pretty much porting ...
0
votes
0answers
67 views

Exception in thread “main” java.lang.RuntimeException: No OpenGL context found

I've recently started to use the lwjgl and haven't run into any problems. Yesterday I went to create a new window (something I've done at least a dozen times, if not more) and it gave these errors ...
0
votes
0answers
61 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 ...
0
votes
0answers
21 views

LWJGL Display Flickering

I've added a feature to my game which renders a menu if the escape key is pressed, but when it's opened, the buffer continues to update which I have no clue how to stop, and when it's closed, the ...
-1
votes
0answers
57 views

Terrain-VBO-Triangle Strips-LWJGL

I am currenlty working on a small schooter game butI want a terrafor mechanism in it so I decided to put the terrain into a VBO but now there is a line from the first vertex to the last right across ...
1
vote
2answers
50 views

Drawn Image In OpenGL Comes Out Wrong Size And With Black Boxes In It

Im currently trying to work on my Java project which includes LWJGL. I have come so far with my "game" that im now drawing an image to the screen. The problem im getting is that the drawn image gets ...
0
votes
1answer
52 views

LWJGL glRotatef using multiple axis

I am trying to rotate something on theoretically the y 90 degrees to show the side, and then 45 degrees on the z to put it at an upwards angle. I do so with: glRotatef(90, 0, 1, 0); glRotatef(45, 0, ...
0
votes
1answer
95 views

How do I use a perspective projection matrix?

I wrote this program, but I want the square to change size as it moves further away. package com.ncom.src; import org.lwjgl.LWJGLException; import org.lwjgl.opengl.Display; import ...
0
votes
2answers
124 views

LWJGL - Simple lighting

i want to code a little minecraft clone. Now i tried to insert some simple lighting but my results are very bad. I read much about it and i tried different solutions without any result. Thats what i ...
0
votes
1answer
82 views

Seamlessly texture a cylinder with OpenGL and LWJGL

I am working on creating a procedural city, complete with randomly generated buildings and textures. I am generating cylinder-ish buildings correctly, and generating a procedural texture pattern for ...
0
votes
0answers
38 views

glMaterialf breaks lighting when disabled, and triangle strips when enabled

I'm trying to convert my terrain from normal triangles to triangle strips in OpenGL, but I'm having a bit of a problem. Without calling glMaterialf, the triangle strips draw properly, but a model ...
1
vote
1answer
56 views

Averaging normals results in zero-length vector

I have four normals which I am attempting to average by adding the x, y, and z values, then normalizing the result. However, when I add the different axis values, the resulting vector has a length of ...
0
votes
2answers
54 views

java calculating with floats and doubles

I have problem with java maths. I have following expression: double tripp = (timeNow-previousTime)/(seconds*Sys.getTimerResolution())*trip; Where I am trying to calculate rotating speed of my cube. ...
1
vote
1answer
117 views

LWJGL - OpenGL - Camera rotation

i tried to create a first person camera. I took a piece of code of my XNA project and tried to convert it into java (LWJGL). Matrix4f mx = Matrix4f.rotate(pitch, new Vector3f(1, 0, 0), ...
2
votes
1answer
116 views

Drawing normals in LWJGL messes with lighting

My issue is fairly straightforward: Drawing normals in LWJGL causes the light source to only apply to the model until it is manually updated after initialization. Here's the lighting initialization: ...
0
votes
1answer
57 views

Multitexturing not working in LWJGL

I followed this tutorial in order to try and achieve multitexturing in LWJGL. But whenever I run my code, the second texture does not show up, or the first texture takes its place. Here is how I bind ...
0
votes
1answer
165 views

OpenGL mathematics (GLM) port for Java [closed]

is there any Java port for GLM library ? I'm using LWJGL and I'm missing some nice capabilities of GLM. I have seen mention about port in this answer, but I don't know how to contact the person that ...
1
vote
1answer
100 views

Textured Sphere in LWJGL

I want to draw a GLU Sphere,which works, but now I dont know how I can texture it. There is no point where a glTexCoord2f could go.
0
votes
0answers
54 views

Black Screen with LWJGL

i want to try LWJGL. I used the Tutorials form LWJGL-Wiki, but my Code still produces a black screen. import static org.lwjgl.opengl.GL11.*; import org.lwjgl.LWJGLException; import ...
0
votes
1answer
62 views

Lighting Without gl_LightSource[0]

What is the equivalent of gl_LightSource[0].position.xyz when writing in GLSL? In other words, how would I take a vec3 (or vec4) in GLSL and apply the same transformations to it that OpenGL applies to ...
-1
votes
1answer
44 views

lwjgl appearing floor [closed]

I got an idea for a 3d game I am making in lwjgl. Basically, I would want tiles appearing when you fly close to a certain height(forming some kind of platform around you), and each tile would ...
0
votes
2answers
122 views

How does one rotate relative to the camera in openGL or more specifically LWJGL?

I am making a 3d game with LWJGL. In this game, whenever I press an arrow key, I want the screen to rotate in that direction, regardless of the current orientaion. I am struggling to implement this ...
0
votes
0answers
36 views

Error rendering VBOs

Using the below method to render with vbos, I get this error: Exception in thread "main" org.lwjgl.opengl.OpenGLException: Cannot use offsets when Array Buffer Object is disabled Rendering method: ...
0
votes
1answer
94 views

Correctly using glVertexPointer?

Whenever I look a tutorials that explain how to use the glDrawArrays and the glVertexPointer commands, the arguments they use are different from the ones I have available. For example : a tutorial ...
1
vote
2answers
62 views

Pushing and popping matrix

So I have a few different objects in my opengl game. If I load a texture or color a vertex, all my other objects in the game are given that texture or their vertices are colored. So, for example. I ...
0
votes
2answers
74 views

Drawing FBO with OpenGL on computer hungs

I have two computers, a Toshiba laptop with an i5 and ATI Radeon HD 5145, and an old Dell desktop, with Pentium D and ATI Radeon X1300 Series. I have created a Java application, using LWJGL, that ...

1 2 3 4 5 8