From 0f6bd84c763f5d77c208d784ce2306ff892cb4d7 Mon Sep 17 00:00:00 2001 From: gfxadmin Date: Thu, 16 Feb 2006 21:19:39 +0000 Subject: Issue number: Obtained from: Submitted by: Travis Reviewed by: Fixing minor build error due to recent GLCapabilities API renaming. Modified Files: src/demos/misc/GLCapsTableDemo.java git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@174 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4 --- src/demos/misc/GLCapsTableDemo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/demos/misc/GLCapsTableDemo.java') 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) { -- cgit v1.2.3