From affa7c075773cbafdd815c81422bb280bccf6aac Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Thu, 18 Apr 2013 03:40:40 +0200
Subject: Adapt to JOGL changes commit fd418a69eca7b8c1bb74244982305fc6004d0a52

Note: We have to find an independent impl. of HDR demo, due to removal of pbuffer floating point texture properties.
---
 src/demos/misc/GLCapsTableDemo.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'src/demos/misc/GLCapsTableDemo.java')

diff --git a/src/demos/misc/GLCapsTableDemo.java b/src/demos/misc/GLCapsTableDemo.java
index 7af11d7..b74b003 100755
--- a/src/demos/misc/GLCapsTableDemo.java
+++ b/src/demos/misc/GLCapsTableDemo.java
@@ -244,10 +244,12 @@ public class GLCapsTableDemo
         data[ pfd ][ 16 ] = "" + (cap.getSampleBuffers() ? t : f) + " | "
           + cap.getNumSamples();
         // concat p buffer nfo
+        /**
         String pbuf = (cap.getPbufferFloatingPointBuffers() ? "T |" : "F |");
         pbuf += (cap.getPbufferRenderToTexture() ? "T | " : "F | ");
         pbuf += (cap.getPbufferRenderToTextureRectangle() ? t : f);
-        data[ pfd ][ 17 ] = pbuf;
+        data[ pfd ][ 17 ] = pbuf; */
+        data[ pfd ][ 17 ] = "FFf";
       }
     JTable table = new JTable(data, colNames) {
         public boolean isCellEditable(int rowIndex, int colIndex) {
-- 
cgit v1.2.3