summaryrefslogtreecommitdiffstats
path: root/src/demos/misc/GLCapsTableDemo.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-04-18 03:40:40 +0200
committerSven Gothel <[email protected]>2013-04-18 03:40:40 +0200
commitaffa7c075773cbafdd815c81422bb280bccf6aac (patch)
tree8bc41f6c9964d2729af10d29f426984fd47d09f3 /src/demos/misc/GLCapsTableDemo.java
parentf8b936ff873536d54c711ec272a2df7a1dbd5ae9 (diff)
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.
Diffstat (limited to 'src/demos/misc/GLCapsTableDemo.java')
-rwxr-xr-xsrc/demos/misc/GLCapsTableDemo.java4
1 files changed, 3 insertions, 1 deletions
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) {