Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (404)
games submitted by our members
Games in WIP (289)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
   Home   Help   Search   Login   Register   
  Show Posts
Pages: [1]
1  Java Game APIs & Engines / OpenGL Development / Re: Problems with OpenGL VBOs on: 2012-11-01 19:27:57
Thanks Tongue I was half-reading a tutorial but I was trying to do my own way at the same time Tongue I'll look up on vertex arrays some more - thanks.
2  Java Game APIs & Engines / OpenGL Development / Problems with OpenGL VBOs on: 2012-11-01 18:10:24
Hello, I've made a basic corridor using immediate OpenGL drawing and I want to transfer it to VBOs. However, it just doesn't work. The immediate drawing works fine, yet I tried to make it using VBOs and it doesn't work. Here is what I am trying to create:

And here is the code that I used for that:
1  
2  
3  
4  
5  
6  
7  
8  
      GL11.glColor3f(1F, 0F, 0F);
      GL11.glVertex3f(0.5F, 1.5F, 1.0F);
      GL11.glColor3f(0F, 1F, 0F);
      GL11.glVertex3f(0.5F, 1.5F, -15.0F);
      GL11.glColor3f(0F, 0F, 1F);
      GL11.glVertex3f(0.5F, -1.5F, -15.0F);
      GL11.glColor3f(0.5F, 0.5F, 0.5F);
      GL11.glVertex3f(0.5F, -1.5F, 1.0F);


Yet when I try to use VBOs for the same thing, it doesn't work and I just get a black window. Here is my class to create is using VBOs.
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  
42  
43  
44  
45  
46  
47  
48  
49  
50  
51  
52  
53  
54  
55  
56  
57  
58  
59  
60  
61  
62  
63  
64  
65  
66  
67  
68  
69  
70  
71  
72  
73  
74  
75  
76  
77  
78  
79  
80  
81  
82  
83  
84  
85  
86  
87  
import java.nio.FloatBuffer;

import org.lwjgl.*;
import org.lwjgl.opengl.*;
import org.lwjgl.util.glu.GLU;

import static org.lwjgl.opengl.ARBBufferObject.*;
import static org.lwjgl.opengl.ARBVertexBufferObject.*;
import static org.lwjgl.opengl.GL11.*;

public class VBO {
   
   static int w = 640;
   static int h = 480;

   public static void main(String[] args) {
      try {
         initWindow();
         renderLoop();
      } catch (LWJGLException e) {
         e.printStackTrace();
      }
   }

   static void initWindow() throws LWJGLException {
      Display.setDisplayMode(new DisplayMode(w, h));
      Display.setFullscreen(false);
      Display.create();

      glViewport(0, 0, w, h);
   }

   static void renderLoop() {
      while (!Display.isCloseRequested()) {
         preRender();
         render();

         Display.update();
         Display.sync(20);
      }
      Display.destroy();
   }

   static void preRender() {
      glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT
            | GL_STENCIL_BUFFER_BIT);

      glMatrixMode(GL_PROJECTION);
      glLoadIdentity();

      glMatrixMode(GL_MODELVIEW);
      glLoadIdentity();
   }

   static void render() {
      glClearColor(1, 1, 1, 1);
      glLoadIdentity();
      glBegin(7);
      drawVertexArray();
   }

   static void drawVertexArray() {
      FloatBuffer cBuffer = BufferUtils.createFloatBuffer(12);
      cBuffer.put(1).put(0).put(0);
      cBuffer.put(0).put(1).put(0);
      cBuffer.put(0).put(0).put(1);
      cBuffer.put(0.5F).put(0.5F).put(0.5F);
      cBuffer.flip();

      FloatBuffer vBuffer = BufferUtils.createFloatBuffer(12);
      vBuffer.put(0.5F).put(1.5f).put(1.0f);
      vBuffer.put(0.5f).put(1.5f).put(-15.0f);
      vBuffer.put(0.5f).put(-1.5f).put(-15.0f);
      vBuffer.put(0.5f).put(-1.5f).put(1.0f);
      vBuffer.flip();
     
      glEnableClientState(GL_VERTEX_ARRAY);
      glEnableClientState(GL_COLOR_ARRAY);

      glColorPointer(4, /* stride */4 << 2, cBuffer);
      glVertexPointer(4, /* stride */4 << 2, vBuffer);
      glDrawArrays(GL_QUADS, 0, /* elements */4);

      glDisableClientState(GL_COLOR_ARRAY);
      glDisableClientState(GL_VERTEX_ARRAY);
   }
}
Pages: [1]
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (54 views)
2013-05-17 21:29:12

alaslipknot (63 views)
2013-05-16 21:24:48

gouessej (94 views)
2013-05-16 00:53:38

gouessej (91 views)
2013-05-16 00:17:58

theagentd (102 views)
2013-05-15 15:01:13

theagentd (93 views)
2013-05-15 15:00:54

StreetDoggy (139 views)
2013-05-14 15:56:26

kutucuk (161 views)
2013-05-12 17:10:36

kutucuk (160 views)
2013-05-12 15:36:09

UnluckyDevil (170 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.101 seconds with 21 queries.