Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

View RSS Feed

Recent Blogs Posts

  1. LWJGL 3D Terrain: Phong lighting implemented

    Finally got the lighting implemented correctly.


    I must say I'm very pleased with the way this has turned out. It looks much better than my previous display-list result:



    This could be because of the lighting and material settings I have, I'm not entirely sure.

    I don't have a lot of time right now so ...
    Categories
    Uncategorized
  2. LWJGL 3D Terrain: Modernizing the code

    In my last post I was able to achieve fairly decent results by creating a static display list and off-loading the drawing code to GPU.

    There's just one problem: This code utilizes features which are "deprecated" and can only be used when running under a backwards compatibility context. Most notably I'm utilizing the direct mode rendering. Starting with OpenGL 3 (I think it's actually 3.3), OpenGL moved to essentially a purely shader-based model.

    So once again, ...

    Updated October 5th, 2012 at 02:28 AM by helloworld922

    Categories
    Uncategorized