<?xml version="1.0" encoding="utf-8"?>
<!-- 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
-->
<?xml-stylesheet type="text/xsl" href="https://mbien.dev/roller-ui/styles/rss.xsl" media="screen"?><rss version="2.0" 
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
  <title>Michael Bien&apos;s Weblog</title>
  <link>https://mbien.dev/blog/</link>
    <atom:link rel="self" type="application/rss+xml" href="https://mbien.dev/blog/feed/entries/rss?tags=opengl" />
  <description>don&apos;t panic</description>
  <language>en-us</language>
  <copyright>Copyright 2024</copyright>
  <lastBuildDate>Sat, 24 Aug 2024 07:57:58 +0000</lastBuildDate>
  <generator>Apache Roller 6.1.4</generator>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/new_getting_started_with_jogl</guid>
    <title>New Getting Started with JOGL 2 tutorials</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/new_getting_started_with_jogl</link>
    <pubDate>Sat, 4 Sep 2010 00:22:38 +0000</pubDate>
    <category>Java</category>
    <category>java</category>
    <category>jogamp</category>
    <category>jogl</category>
    <category>opengl</category>
<description>&lt;p&gt;
Thanks to &lt;a href=&quot;https://sites.google.com/site/justinscsstuff/Home&quot;&gt;Justin Stoecker&lt;/a&gt;, computer science graduate student at the University of Miami, JOGL gets a new set of getting started tutorials:
&lt;/p&gt;
&lt;i&gt;
&lt;p&gt;
JOGL, or Java Bindings for OpenGL, allows Java programs to access the OpenGL API for graphics programming. The graphics code in JOGL programs will look almost identical to that found in C or C++ OpenGL programs, as the API is automatically generated from C header files. This is one of the greatest strengths of JOGL, as it is quite easy to port OpenGL programs written in C or C++ to JOGL; learning JOGL is essentially learning OpenGL[...]
&lt;/p&gt;
&lt;/i&gt;
&lt;h3&gt;Tutorials:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://sites.google.com/site/justinscsstuff/jogl-tutorials&quot;&gt;index&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sites.google.com/site/justinscsstuff/jogl-tutorial-1&quot;&gt;Tutorial 1 - Environment Setup&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sites.google.com/site/justinscsstuff/jogl-tutorial-2&quot;&gt;Tutorial 2 - Creating a Window&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sites.google.com/site/justinscsstuff/jogl-tutorial-3&quot;&gt;Tutorial 3 - Creating a Render Loop&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
Thanks Justin!&lt;br/&gt;</description>  </item>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/jogl_2_composeable_pipline</guid>
    <title>JOGL 2 - Composeable Pipline</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/jogl_2_composeable_pipline</link>
    <pubDate>Wed, 25 Aug 2010 15:27:31 +0000</pubDate>
    <category>Java</category>
    <category>java</category>
    <category>jogamp</category>
    <category>jogl</category>
    <category>opengl</category>
<description>JOGL provides a feature called &apos;composeable pipeline&apos; which can be quite useful in some situations. It enables you to put additional delegating layers between your java application and the OpenGL driver.

A few usecases could be:
&lt;ul&gt;
&lt;li&gt;performance metrics&lt;/li&gt;
&lt;li&gt;logging, debugging or diagnostics&lt;/li&gt;
&lt;li&gt;to ignore specific function calls&lt;/li&gt;
&lt;/ul&gt;

It is very easy to set up. Just put this line into your code and the DebugGL layer will throw a GLException as soon an error occurs (you want this usually when you are developing the software).

&lt;pre&gt;&lt;code class=&quot;language-java&quot;&gt;
    public void init(GLAutoDrawable drawable) {
        // wrap composeable pipeline in a Debug utility, all OpenGL error codes are automatically
        // converted to GLExceptions as soon as they appear
        drawable.setGL(new DebugGL3(drawable.getGL().getGL3()));
        //..
    }
&lt;/code&gt;&lt;/pre&gt;

Another predefined layer is TraceGL which intercepts all OpenGL calls and prints them to an output stream.
&lt;pre&gt;&lt;code class=&quot;language-java&quot;&gt;
        drawable.setGL(new TraceGL3(drawable.getGL().getGL3(), System.out));
&lt;/code&gt;&lt;/pre&gt;
see also &lt;a href=&quot;//mbien.dev/blog/entry/jogl_2_opengl_profiles_explained&quot;&gt;GL Profiles&lt;/a&gt;
&lt;br/&gt;</description>  </item>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/jogamp_at_siggraph_2010</guid>
    <title>JogAmp at SIGGRAPH 2010</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/jogamp_at_siggraph_2010</link>
    <pubDate>Sun, 23 May 2010 21:17:07 +0000</pubDate>
    <category>Java</category>
    <category>jocl</category>
    <category>jogamp</category>
    <category>jogl</category>
    <category>opencl</category>
    <category>opengl</category>
<description>&lt;b&gt;The &lt;a href=&quot;http://jogamp.org/&quot;&gt;JogAmp&lt;/a&gt; team will be present at &lt;a href=&quot;http://www.siggraph.org/s2010&quot;&gt;SIGGRAPH&lt;/a&gt; this year:&lt;/b&gt;
&lt;pre&gt;
3D &amp; Multimedia Across Platforms and Devices Using JOGL
Tuesday, 27 July | 4:00 PM - 6:00 PM

This session discusses the features, contributions, and future of OpenGL, OpenCL, and OpenMax
across devices and OS exposed on top of Java using the JogAmp open-source libraries.
&lt;/pre&gt;
&lt;a href=&quot;http://www.siggraph.org/s2010/for_attendees/birds_feather&quot;&gt;link to Session&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;

hope to meet you there.&lt;br/&gt;&lt;br/&gt;

&lt;b&gt;about &lt;a href=&quot;http://jogamp.org/&quot;&gt;JogAmp&lt;/a&gt;.&lt;/b&gt;&lt;br/&gt;
&lt;i&gt;JogAmp is the home of high performance Java libraries for 3D Graphics, Multimedia and Processing.
JogAmp consists currently of the projects JOGL, JOCL and JOAL which provide cross platform language bindings to the OpenGL, OpenCL, OpenAL and OpenMAX APIs.&lt;/i&gt;&lt;br/&gt;&lt;br/&gt;

&lt;iframe width=&quot;620&quot; height=&quot;348&quot; src=&quot;https://www.youtube-nocookie.com/embed/hTNfGZTnp3c&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;br/&gt;
- - - -
&lt;br/&gt;
(yes i know i should start bogging again :))&lt;br/&gt;&lt;br/&gt;</description>  </item>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/jogl_2_opengl_profiles_explained</guid>
    <title>JOGL 2 - OpenGL Profiles explained</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/jogl_2_opengl_profiles_explained</link>
    <pubDate>Sat, 22 Aug 2009 20:20:41 +0000</pubDate>
    <category>3D Graphics</category>
    <category>java</category>
    <category>jogl</category>
    <category>netbeans</category>
    <category>opengl</category>
<description>&lt;p&gt;
&lt;b&gt;June 16 2010, updated blogpost: OpenGL 4&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
JOGL 2 supports several OpenGL Profiles. In this blog entry I try to explain what profiles are and why they are needed.&lt;/p&gt;&lt;h3&gt;History&lt;/h3&gt;&lt;p&gt;SGI released the first OpenGL specification 1992. Since this point OpenGL 1.x constantly evolved (under the ARB and later Khronos Group) by adding new functions to the core API. This went well until programmable graphics hardware became mainstream and shaders became suddenly more flexible and efficient as the generic fixed function pipeline.&lt;/p&gt;&lt;p&gt; OpenGL 2.x was the last version in which you could freely mix the fixed function pipeline with the programmable pipeline (as a core feature).&lt;/p&gt;

&lt;a href=&quot;https://www.khronos.org/news/press/khronos-releases-opengl-3.2-third-major-opengl-release-within-twelve-months&quot;&gt;
&lt;img src=&quot;https://www.opengl.org/img/uploads/news/OpenGL-3-evolution_sml.jpg&quot; class=&quot;left&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;
&lt;p&gt;
With the release of OpenGL 3.0 the whole fixed function pipeline has been deprecated but you could still use it if you haven&apos;t requested a forward compatible context.&lt;/p&gt;&lt;p&gt; OpenGL 3.1 and 3.2 removed most deprecated functionality from core specification, however some implementations (e.g. Nvidia drivers) still allow to get them back via an optional compatibility extension. Since 3.1 was the first release which broke compatibility, it is often seen as major OpenGL 3 release. &lt;br /&gt;&lt;/p&gt;
&lt;h3&gt;JOGL 2 (JSR 231)&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;JOGL 1.1.1 lived in the timeframe up to OpenGL 3.0 which made it easy to stay in sync with the spec. To be able to solve the issue with the deprecation of functionality, JOGL 2 (JSR maintenance release) introduces an abstraction of the original OpenGL versioning called Profile. Profiles allow Java applications to be written in a way which allows compatibility with multiple OpenGL versions at the same time. Since OpenGL ES (GL for embedded systems) has overlapping functionality with OpenGL itself it opened the opportunity to add even Profiles which bridge desktop and embedded implementations. The class diagram below shows the dependencies between
&lt;a href=&quot;http://jogamp.org/jogl/doc/bouml/html-svg/&quot;&gt;all available Profiles&lt;/a&gt;.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;embed src=&quot;http://jogamp.org/jogl/doc/bouml/html-svg/fig128069.svg&quot; width=&quot;735&quot; height=&quot;600&quot;/&gt;
&lt;/p&gt;
&lt;p&gt;
Before you start writing a JOGL application you will have to decide first which GLProfile you want to use. The code snippet below lists all currently supported profiles (extracted from &lt;a href=&quot;http://jogamp.org/deployment/jogl-next/javadoc_public/javax/media/opengl/GLProfile.html&quot;&gt;GLProfile&lt;/a&gt;).
&lt;/p&gt;
&lt;br/&gt;
&lt;h3&gt;Current list of supported profiles and their mapping to the implementation versions&lt;/h3&gt;

&lt;pre&gt;&lt;code class=&quot;language-java&quot;&gt;
    /** The desktop OpenGL compatibility profile 4.x, with x &gt;= 0, ie GL2 plus GL4.&lt;br&gt;
        &lt;code&gt;bc&lt;/code&gt; stands for backward compatibility. */
    public static final String GL4bc = &quot;GL4bc&quot;;

    /** The desktop OpenGL core profile 4.x, with x &gt;= 0 */
    public static final String GL4   = &quot;GL4&quot;;

    /** The desktop OpenGL compatibility profile 3.x, with x &gt;= 1, ie GL2 plus GL3.&lt;br&gt;
        &lt;code&gt;bc&lt;/code&gt; stands for backward compatibility. */
    public static final String GL3bc = &quot;GL3bc&quot;;

    /** The desktop OpenGL core profile 3.x, with x &gt;= 1 */
    public static final String GL3   = &quot;GL3&quot;;

    /** The desktop OpenGL profile 1.x up to 3.0 */
    public static final String GL2   = &quot;GL2&quot;;

    /** The embedded OpenGL profile ES 1.x, with x &gt;= 0 */
    public static final String GLES1 = &quot;GLES1&quot;;

    /** The embedded OpenGL profile ES 2.x, with x &gt;= 0 */
    public static final String GLES2 = &quot;GLES2&quot;;

    /** The intersection of the desktop GL2 and embedded ES1 profile */
    public static final String GL2ES1 = &quot;GL2ES1&quot;;

    /** The intersection of the desktop GL3, GL2 and embedded ES2 profile */
    public static final String GL2ES2 = &quot;GL2ES2&quot;;

    /** The intersection of the desktop GL3 and GL2 profile */
    public static final String GL2GL3 = &quot;GL2GL3&quot;;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;
&lt;i&gt;Note: GL2 Profile supports OpenGL up to version 3.0 (included) - this is not a bug: OpenGL 3.1 was the big game changer&lt;/i&gt;
&lt;/p&gt;
&lt;p&gt;
The next two code snippets show the basic steps how to set up OpenGL with JOGL 2.
&lt;/p&gt;
&lt;h3&gt;Context creation&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&quot;language-java&quot;&gt;
        //create a profile, in this case OpenGL 3.1 or later
        GLProfile profile = GLProfile.get(GLProfile.GL3);
        
        //configure context
        GLCapabilities capabilities = new GLCapabilities(profile);
        capabilities.setNumSamples(2); // enable anti aliasing - just as a example
        capabilities.setSampleBuffers(true);
        
        //initialize a GLDrawable of your choice
        GLCanvas canvas = new GLCanvas(capabilities);

        //register GLEventListener
        canvas.addGLEventListener(...);
        //... (start rendering thread -&gt; start rendering...)
&lt;/code&gt;&lt;/pre&gt;
&lt;br/&gt;
&lt;h3&gt;Rendering&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&quot;language-java&quot;&gt;
    public void display(GLAutoDrawable drawable) {
        GL3 gl = drawable.getGL().getGL3();
        gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
        //.. render something
    }
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Summary&lt;/h3&gt;
&lt;p&gt;
Profiles make JOGL 2 very flexible and allow it to build modular and portable applications. For instance part A of an application can be written against the GL2ES2 interface and part B (which is more hardware specific) against the GL3 interface. This would in theory allow to reuse A in an embedded application and B could e.g. disable itself on old desktop hardware which runs only OpenGL 2.x or fall back to a GL2 implementation.
&lt;/p&gt;
&lt;p&gt;
More information can be found on &lt;a href=&quot;http://jogamp.org&quot;&gt;JogAmp.org&lt;/a&gt; (&lt;a href=&quot;http://jogamp.org/deployment/jogl-next/javadoc_public/&quot;&gt;direct link to javadoc&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
The next release of the &lt;a href=&quot;http://kenai.com/projects/netbeans-opengl-pack&quot;&gt;OpenGL Pack&lt;/a&gt; for NetBeans will fully support JOGL 2. Beta builds can be found &lt;a href=&quot;http://projectkenai.com/projects/netbeans-opengl-pack/downloads/directory/early-access&quot;&gt;here&lt;/a&gt; (builds contain JOGL2 beta5):
&lt;/p&gt;</description>  </item>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/netbeans_opengl_pack_2_in</guid>
    <title>NetBeans OpenGL Pack #2 in most popular plugins ranking</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/netbeans_opengl_pack_2_in</link>
    <pubDate>Tue, 19 May 2009 20:50:12 +0000</pubDate>
    <category>NetBeans</category>
    <category>java</category>
    <category>jogl</category>
    <category>netbeans</category>
    <category>opengl</category>
<description>&lt;p&gt;&lt;a href=&quot;http://plugins.netbeans.org/PluginPortal/faces/PluginDetailPage.jsp?pluginid=3260&quot;&gt;&lt;img vspace=&quot;0&quot; hspace=&quot;10&quot; border=&quot;0&quot; align=&quot;left&quot; alt=&quot;NetBeans OpenGL Pack logo&quot; src=&quot;https://netbeans-opengl-pack.dev.java.net/resources/NetBeansOpenGLPackLogo.png&quot; /&gt;&lt;/a&gt;Since I haven&apos;t bloged for a long time about the OpenGL Pack, here are some notes for the last two update releases.&lt;/p&gt;&lt;p&gt;Beside updates and fixes the only new feature I added is the OpenGL Quicksearch. It uses the NetBeans 6.5 Quicksearch functionality (similar to ctrl + 3 in eclipse) and searches through several OpenGL resources.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;currently are five resources available for search:&lt;/strong&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://opengl.org/sdk/docs/man/&quot;&gt;OpenGL SDK&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.opengl.org/registry/&quot;&gt;OpenGL SDK Extension Registry&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://developer.nvidia.com/object/nvidia_opengl_specs.html&quot;&gt;Nvidia Extensions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://ati.amd.com/developer/sdk/radeonSDK/html/info/Prog3D.html&quot;&gt;ATI/AMD Extensions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;JOGL sources (only when JOGL module installed and used in at least one opened project)&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;power users can restrict the search to a category with the following prefixes ([prefix&amp;nbsp; space] searchstring&amp;nbsp; (space searchstring)*):&lt;br /&gt;&lt;strong&gt;gl&lt;/strong&gt; for GL SDK, &lt;strong&gt;ext&lt;/strong&gt; for GL extensions, &lt;strong&gt;nv&lt;/strong&gt; for Nvidia extensions, &lt;strong&gt;ati&lt;/strong&gt; for ATI/AMD Extensions.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
    &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/resources/JOGL_FormDesigner_Integration2.png&quot;&gt;
        &lt;img width=&quot;319&quot; height=&quot;200&quot; alt=&quot;JOGL component in NetBeans Formdesigner&quot; src=&quot;https://netbeans-opengl-pack.dev.java.net/resources/JOGL_FormDesigner_Integration2_small.png&quot; /&gt;
    &lt;/a&gt;
    &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/resources/OpenGL_QuickSearch.png&quot;&gt;
        &lt;img width=&quot;106&quot; height=&quot;200&quot; alt=&quot;OpenGL quicksearch&quot; src=&quot;https://netbeans-opengl-pack.dev.java.net/resources/OpenGL_QuickSearch_small.png&quot; /&gt;
    &lt;/a&gt;
    &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/resources/compilerErrorAnnotations.PNG&quot;&gt;
        &lt;img width=&quot;274&quot; height=&quot;200&quot; alt=&quot;GLSL editor&quot; src=&quot;https://netbeans-opengl-pack.dev.java.net/resources/compilerErrorAnnotations_small.png&quot; /&gt;
    &lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;Pictures featuring: Form Designer sample project, GL Quicksearch, updated GLSL 1.3 editor&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Changes in 0.5.3: &lt;/strong&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Java Applet and Webstart support&lt;/li&gt;&lt;li&gt;OpenGL Quicksearch&lt;/li&gt;&lt;li&gt;GLSL editor updated to support GLSL 1.3 (OpenGL 3.0 spec)&lt;/li&gt;&lt;li&gt;two new NetBeans Form Designer sample JOGL projects&lt;/li&gt;&lt;li&gt;NetBeans 6.5 and JDK6 are the new minimum requirements&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Changes in 0.5.2 since &lt;a href=&quot;//mbien.dev/blog/entry/netbeans_opengl_pack_0_5&quot;&gt;last release&lt;/a&gt;:&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;JOGL distribution has been updated to version 1.1.1&lt;/li&gt;&lt;li&gt;GLSL linker now does not stop linking shaders on compiler warnings&lt;/li&gt;&lt;li&gt;the pack should now correctly deploy JOGL and GlueGen&apos;s native libraries on all supported platforms (64bit bug)&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;To download the pack, please visit the &lt;a href=&quot;http://plugins.netbeans.org/PluginPortal/faces/PluginDetailPage.jsp?pluginid=3260&quot;&gt;plugin portal&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;As always, please use the &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/servlets/ProjectMailingListList&quot;&gt;user mailing list&lt;/a&gt; for feedback and the &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/servlets/ProjectIssues&quot;&gt;issue tracker&lt;/a&gt; for bug reports on the &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/&quot;&gt;project page&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;- - - - -&lt;br /&gt;&lt;/p&gt;&lt;p&gt;BTW the pack recenty reached the &lt;strong&gt;36k downloads&lt;/strong&gt; milestone which makes it to the #2 in the most popular plugins category of the plugin portal ;) &lt;/p&gt;</description>  </item>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/netbeans_opengl_pack_0_5</guid>
    <title>NetBeans OpenGL Pack 0.5.1 released</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/netbeans_opengl_pack_0_5</link>
    <pubDate>Sat, 12 Apr 2008 15:31:45 +0000</pubDate>
    <category>NetBeans</category>
    <category>java</category>
    <category>jogl</category>
    <category>netbeans</category>
    <category>opengl</category>
<description>&lt;p&gt;The NetBeans OpenGL Pack 0.5.1 has been released. This is a small bugfix release with no major features added.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Changes since &lt;a href=&quot;//mbien.dev/blog/entry/netbeans_opengl_pack_is_growing&quot;&gt;last release&lt;/a&gt;:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;updated JOGL distribution to v1.1.1rc8&lt;/li&gt;&lt;li&gt; updated JOGL demos (added gears Applet demo)&lt;/li&gt;&lt;li&gt;added JOGL API support module for doc and source integration&lt;br /&gt;&lt;/li&gt;&lt;li&gt; webstart support for JOGL project templates (just enable it in the project properties)&lt;/li&gt;&lt;li&gt;improved JOGL deployment code (fixed some issues on 64bit systems)&lt;/li&gt;&lt;li&gt;bug fixes&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;To download the pack please visit the &lt;a href=&quot;http://plugins.netbeans.org/PluginPortal/faces/PluginDetailPage.jsp?pluginid=3260&quot;&gt;plugin portal page&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;The OpenGL pack will be soon available via plugin portal update center (Tools | Plugins). This will make our old&amp;nbsp; &amp;quot;NetBeans OpenGL Pack update center&amp;quot; obsolete (and improve the download speed!). However, we will use the old update center for experimental not final releases in future. &lt;/p&gt;&lt;p&gt;As always, please use the &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/servlets/ProjectMailingListList&quot;&gt;user mailing list&lt;/a&gt; for feedback and the &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/servlets/ProjectIssues&quot;&gt;issue tracker&lt;/a&gt; for bug reports on the &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/&quot;&gt;project page&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-------&lt;/p&gt;&lt;p&gt;Write once run everywhere [&lt;a href=&quot;http://blogs.sun.com/jonasdias/entry/developing_opengl_with_netbeans_6&quot;&gt;1&lt;/a&gt;][&lt;a href=&quot;http://journal.mycom.co.jp/column/jsr/046/index.html&quot;&gt;2&lt;/a&gt;][&lt;a href=&quot;http://www.java2.pl/index.php/java/jogl-instalacja-w-netbeans/&quot;&gt;3&lt;/a&gt;][&lt;a href=&quot;http://d.hatena.ne.jp/shin/20080407/p1&quot;&gt;4&lt;/a&gt;][&lt;a href=&quot;http://blogs.sun.com/thaniwa/entry/ja_netbeans_openglpack&quot;&gt;5&lt;/a&gt;][&lt;a href=&quot;http://blog.csdn.net/bigbear73/archive/2007/11/28/1905214.aspx&quot;&gt;6&lt;/a&gt;] - seems like the platform agnostic JOGL deployment is working ;)&lt;br /&gt;&lt;/p&gt;</description>  </item>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/pictures_of_my_old_3d</guid>
    <title>Pictures of my old 3D Engine in Java</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/pictures_of_my_old_3d</link>
    <pubDate>Sun, 30 Dec 2007 18:35:36 +0000</pubDate>
    <category>Java</category>
    <category>java</category>
    <category>jogl</category>
    <category>opengl</category>
<description>&lt;p&gt;
Here are some screenshots of my 3D Engine (codename Metaverse) I made a few years ago (click to enlarge). It is written in Java and uses &lt;a target=&quot;_blank&quot; href=&quot;https://jogl.dev.java.net/&quot;&gt;JOGL&lt;/a&gt; (JSR 231) as OpenGL binding and &lt;a target=&quot;_blank&quot; href=&quot;https://jinput.dev.java.net/&quot;&gt;JInput&lt;/a&gt; to access the controllers.&lt;br /&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a target=&quot;_blank&quot; href=&quot;https://lh6.googleusercontent.com/-UeVg9q9Z8nU/TiMz8zH3tAI/AAAAAAAAADw/OpkpwgahXkY/s1024/surface.png&quot;&gt;
&lt;img  width=&quot;350&quot; height=&quot;257&quot; src=&quot;https://lh5.googleusercontent.com/-N7WxfOJsiak/TiMz9NJViKI/AAAAAAAAADs/X50Dqh-uAeE/surface_small.png&quot; /&gt;
&lt;/a&gt;
&lt;a target=&quot;_blank&quot; href=&quot;https://lh4.googleusercontent.com/-N_Kp2XnZ8H8/TiMz73UlQ0I/AAAAAAAAADk/ikdesKGDNC0/s912/planet.png&quot;&gt;
&lt;img  width=&quot;350&quot; height=&quot;257&quot; src=&quot;https://lh6.googleusercontent.com/-UktG64eFxwc/TiMz75tfshI/AAAAAAAAADc/EqWjD6ZkJ0s/planet_small.png&quot; /&gt;
&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;These shots show the real time lighting and water rendering capabilities. They also show that you are the whole time on a real 3D planet (codename potato ;) ).&lt;/p&gt;
&lt;p&gt;
&lt;a target=&quot;_blank&quot; href=&quot;https://lh5.googleusercontent.com/-WSnfu6cMm2c/TiMz9agMsRI/AAAAAAAAAD0/eXtkiajR1Vo/s912/vehicleTest1.png&quot;&gt;
&lt;img width=&quot;350&quot; height=&quot;257&quot; src=&quot;https://lh6.googleusercontent.com/--qUwd5OeDKg/TiMz9mQcuaI/AAAAAAAAAD8/Wf4Qzdgxmlg/vehicleTest1_small.png&quot; /&gt;
&lt;/a&gt;

&lt;a target=&quot;_blank&quot; href=&quot;https://lh3.googleusercontent.com/-XuJ2xM5Btvk/TiMz7DpHP3I/AAAAAAAAADg/l2oNygZ78Zg/s912/globe_wire.png&quot;&gt;
&lt;img  width=&quot;350&quot; height=&quot;257&quot; src=&quot;https://lh6.googleusercontent.com/-ygWch0GTKz0/TiMz6GdSilI/AAAAAAAAADQ/EQmLychvBcA/globe_wire_small.png&quot; /&gt;
&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;The next shows a &apos;test vehicle&apos; to test model loading, animation, physics and collision detection of the Engine. You can use this vehicle to explore the planet - it makes even a lot of fun to drive through rough terrain and try to survive jumps from steep hills ;). The other screenshot shows the planet as wireframe.&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;
&lt;a target=&quot;_blank&quot; href=&quot;https://lh3.googleusercontent.com/-nnizJlaVkcQ/TiMz9QNKwWI/AAAAAAAAAD4/AE-PzpESodU/s1152/river2.png&quot;&gt;
&lt;img  width=&quot;350&quot; height=&quot;257&quot; src=&quot;https://lh5.googleusercontent.com/-C5kMy8_Bu18/TiMz8prrxRI/AAAAAAAAADo/5hLwrmNQhNU/river2_small.png&quot; /&gt;
&lt;/a&gt;

&lt;a target=&quot;_blank&quot; href=&quot;https://lh6.googleusercontent.com/-xqBVl3rQSWI/TiMz7A66q0I/AAAAAAAAADY/GjnYt50b1XI/s1152/impact2.png&quot;&gt;
&lt;img  width=&quot;350&quot; height=&quot;257&quot; src=&quot;https://lh5.googleusercontent.com/-j5X2Gx9HjSE/TiMz7QYskvI/AAAAAAAAADU/3eslEsUyrWs/impact2_small.png&quot; /&gt;
&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
The last two show the continuous triangulation of the terrain mesh and the space subdivision into a quad-tree (used for fast frustum culling and physics). The viewer is configured to be located inside the river bed.&lt;/p&gt;

&lt;p&gt;You think that Java for 3D Graphics is like a penguin in hell? If you follow some rules to prevent stop the world garbage collections (full GCs) and prevent calls through the JNI where possible you can reach with the server (hotspot compiler) JVM performance comparable to C++ code.&lt;br /&gt; &lt;/p&gt;

&lt;p&gt;The rendering performance is quite good. Even fast fly overs are rendered with 60+ fps. If the camera stays still the renderer reaches 200+ fps on my notebook (ATI X1600).
&lt;/p&gt;

&lt;p&gt;
I have currently no time to continue with this project but if I think back how fun it was to work on that engine I would love to start hacking again immediately ;).
&lt;/p&gt;</description>  </item>
  <item>
    <guid isPermaLink="true">https://mbien.dev/blog/entry/netbeans_opengl_pack_is_growing</guid>
    <title>NetBeans OpenGL Pack is evolving</title>
    <dc:creator>mbien</dc:creator>
    <link>https://mbien.dev/blog/entry/netbeans_opengl_pack_is_growing</link>
    <pubDate>Tue, 11 Dec 2007 18:43:21 +0000</pubDate>
    <category>NetBeans</category>
    <category>java</category>
    <category>netbeans</category>
    <category>opengl</category>
<description>&lt;p&gt;The &lt;a target=&quot;_blank&quot; href=&quot;https://netbeans-opengl-pack.dev.java.net/&quot;&gt;NetBeans OpenGL Pack&lt;/a&gt; is slowly evolving to a set of useful integrated tools, demo applications and editors for Java OpenGL development.&lt;/p&gt;&lt;p&gt;The features currently included are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/resources/compilerErrorAnnotations.PNG&quot; target=&quot;_blank&quot;&gt;Editor&lt;/a&gt; for the OpenGL Shading Language (GLSL) with compiler error annotation, code folding, syntax highlighting, auto completion and documentation.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Easy access to the GLSL &lt;a target=&quot;_blank&quot; href=&quot;https://netbeans-opengl-pack.dev.java.net/resources/compileAndLink.PNG&quot;&gt;compiler and linker&lt;/a&gt; of your graphics driver integrated in the editor&lt;br /&gt;&lt;/li&gt;&lt;li&gt;OpenGL Capabilities Viewer&lt;/li&gt;&lt;li&gt;Integration of &lt;a target=&quot;_blank&quot; href=&quot;https://netbeans-opengl-pack.dev.java.net/resources/JOGL_FormDesigner_Integration.PNG&quot;&gt;JOGL GUI components&lt;/a&gt; into the Matisse GUI builder&lt;/li&gt;&lt;li&gt;JOGL project templates&lt;/li&gt;&lt;li&gt;Ready to run&lt;a target=&quot;_blank&quot; href=&quot;https://netbeans-opengl-pack.dev.java.net/resources/demoProjects.PNG&quot;&gt; JOGL demos and examples&lt;/a&gt; of the OpenGL Programming Guide (also known as Red Book)&amp;nbsp;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;We are currently fixing the last bugs and hope to build the first release soon. The early access version is available via Update Center in the download section of the &lt;a href=&quot;https://netbeans-opengl-pack.dev.java.net/&quot; target=&quot;_blank&quot;&gt;project page&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;------------&lt;br /&gt;The project has also been recently mentioned in the &lt;a target=&quot;_blank&quot; href=&quot;http://www.netbeans.org/community/magazine/&quot;&gt;NetBeans Magazine&lt;/a&gt; [&lt;a href=&quot;http://www.netbeans.org/download/magazine/04/nb04.pdf&quot; target=&quot;_blank&quot;&gt;issue four&lt;/a&gt;] covering NetBeans 6 features. Geertjan Wielenga interviewed me about the GLSL editor in the Schliemann section of the magazine.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;</description>  </item>
</channel>
</rss>