diff options
Diffstat (limited to 'src/demos/misc/GLCapsTableDemo.java')
-rwxr-xr-x | src/demos/misc/GLCapsTableDemo.java | 4 |
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) { |