diff options
Diffstat (limited to 'src/demos/misc')
-rwxr-xr-x | src/demos/misc/GLCapsTableDemo.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demos/misc/GLCapsTableDemo.java b/src/demos/misc/GLCapsTableDemo.java index 548099d..767c4d5 100755 --- a/src/demos/misc/GLCapsTableDemo.java +++ b/src/demos/misc/GLCapsTableDemo.java @@ -224,9 +224,9 @@ public class GLCapsTableDemo data[ pfd ][ 16 ] = "" + (cap.getSampleBuffers() ? t : f) + " | " + cap.getNumSamples(); // concat p buffer nfo - String pbuf = (cap.getOffscreenFloatingPointBuffers() ? "T |" : "F |"); - pbuf += (cap.getOffscreenRenderToTexture() ? "T | " : "F | "); - pbuf += (cap.getOffscreenRenderToTextureRectangle() ? t : f); + String pbuf = (cap.getPbufferFloatingPointBuffers() ? "T |" : "F |"); + pbuf += (cap.getPbufferRenderToTexture() ? "T | " : "F | "); + pbuf += (cap.getPbufferRenderToTextureRectangle() ? t : f); data[ pfd ][ 17 ] = pbuf; } JTable table = new JTable(data, colNames) { |