aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRami Santina <[email protected]>2011-03-27 13:14:50 +0300
committerRami Santina <[email protected]>2011-03-27 13:14:50 +0300
commit915639b05db5ed7cd0ac5b32e10b194d0f54172d (patch)
treef2740e56a6d41e29899b12fa8eb5ca9ff0acdf9d
parentae00fd949a08340a1dd291d7f3e5d800feb1af46 (diff)
Demo refactor variable names
-rw-r--r--src/demo/GPUTextGLListenerBase01.java20
-rw-r--r--src/jogamp/graph/curve/opengl/VBORegion2PGL3.java2
2 files changed, 11 insertions, 11 deletions
diff --git a/src/demo/GPUTextGLListenerBase01.java b/src/demo/GPUTextGLListenerBase01.java
index 8d4232ef9..96a06085e 100644
--- a/src/demo/GPUTextGLListenerBase01.java
+++ b/src/demo/GPUTextGLListenerBase01.java
@@ -45,7 +45,7 @@ public abstract class GPUTextGLListenerBase01 implements GLEventListener {
HwTextRenderer textRenderer;
KeyAction keyAction;
- boolean fontUpdate = true;
+ boolean updateFont = true;
int fontSize = 40;
final int fontSizeModulo = 100;
Font font;
@@ -59,7 +59,7 @@ public abstract class GPUTextGLListenerBase01 implements GLEventListener {
// float zoom = -1000f;
int texSize = 400; // FBO/tex size ..
- boolean doMatrix = true;
+ boolean updateMatrix = true;
boolean debug;
boolean trace;
static final String text1;
@@ -112,16 +112,16 @@ public abstract class GPUTextGLListenerBase01 implements GLEventListener {
gl.glClearColor(1.0f, 1.0f, 1.0f, 1.0f); // Demo02 needs to have this set here as well .. hmm ?
gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
- if(doMatrix) {
+ if(updateMatrix) {
textRenderer.resetMatrix(gl);
textRenderer.translate(gl, xTran, yTran, zoom);
textRenderer.rotate(gl, ang, 0, 1, 0);
- doMatrix = false;
+ updateMatrix = false;
}
- if(fontUpdate) {
+ if(updateFont) {
font = textRenderer.createFont(vfactory, "Lucida Sans Regular", fontSize);
- fontUpdate = false;
+ updateFont = false;
}
textRenderer.renderString3D(gl, font, text2, position, texSize);
}
@@ -133,26 +133,26 @@ public abstract class GPUTextGLListenerBase01 implements GLEventListener {
public void fontIncr(int v) {
fontSize = Math.abs((fontSize + v) % fontSizeModulo) ;
- fontUpdate = true;
+ updateFont = true;
dumpMatrix();
}
public void zoom(int v){
zoom += v;
- doMatrix = true;
+ updateMatrix = true;
dumpMatrix();
}
public void move(float x, float y){
xTran += x;
yTran += y;
- doMatrix = true;
+ updateMatrix = true;
dumpMatrix();
}
public void rotate(float delta){
ang += delta;
ang %= 360.0f;
- doMatrix = true;
+ updateMatrix = true;
dumpMatrix();
}
diff --git a/src/jogamp/graph/curve/opengl/VBORegion2PGL3.java b/src/jogamp/graph/curve/opengl/VBORegion2PGL3.java
index 0330accbe..baca05dc7 100644
--- a/src/jogamp/graph/curve/opengl/VBORegion2PGL3.java
+++ b/src/jogamp/graph/curve/opengl/VBORegion2PGL3.java
@@ -296,7 +296,7 @@ public class VBORegion2PGL3 implements Region{
int status = gl.glCheckFramebufferStatus(GL3.GL_FRAMEBUFFER);
if(status != GL3.GL_FRAMEBUFFER_COMPLETE){
- System.out.println("FRAAAAAAAAAAAAAAME");
+ System.err.println("Cant Create R2T pass!");
}
//render texture