Example #1
0
  public void render3D(GL gl, GLDrawable glc) {
    if (pts2d.size() < 4) return;
    if (fill != null || texture != null) {
      if (texture == null) {
        setColor(gl, fill);
        gl.glDisable(GL.GL_TEXTURE_2D);
      } else {
        setColor(gl, Color.white);
        Texture gltexture = texture.getTexture(glc);
        gltexture.enable();
        gl.glTexParameteri(GL.GL_TEXTURE_2D, GL.GL_TEXTURE_WRAP_S, GL.GL_REPEAT);
        gl.glTexParameteri(GL.GL_TEXTURE_2D, GL.GL_TEXTURE_WRAP_T, GL.GL_REPEAT);
        gl.glTexEnvf(GL.GL_TEXTURE_ENV, GL.GL_TEXTURE_ENV_MODE, GL.GL_MODULATE);
        gl.glTexParameteri(GL.GL_TEXTURE_2D, GL.GL_TEXTURE_MAG_FILTER, GL.GL_NEAREST);
        gl.glTexParameteri(GL.GL_TEXTURE_2D, GL.GL_TEXTURE_MIN_FILTER, GL.GL_NEAREST);
        gltexture.bind();
      }
      gl.glPushMatrix();

      // get 4 control points of portal
      Point2D p0 = pts2d.get(0);
      Point2D p1 = pts2d.get(1);
      Point2D p2 = pts2d.get(2);
      Point2D p3 = pts2d.get(3);

      // render 1st side of portal with height extra[0]
      renderOneside(p0, p1, gl, extra[0]);

      // render 1st side of portal with height extra[1]
      renderOneside(p2, p3, gl, extra[1]);

      gl.glPopMatrix();
    }
  }
Example #2
0
 synchronized void flushOpenGLIDs(int i) {
   for (Enumeration enumeration = textureList.keys(); enumeration.hasMoreElements(); ) {
     String s = (String) enumeration.nextElement();
     Texture texture = getTexture(s);
     if (texture != null) texture.clearIDs(i);
     else Logger.log("Texture '" + s + "' is supposed to be there, but couldn't be found!?", 1);
   }
 }
Example #3
0
 public void preWarm(FrameBuffer framebuffer) {
   if (!framebuffer.usesRenderer(1)) return;
   for (int i = 0; i < textureCount; i++) {
     Texture texture = textures[i];
     Texture texture1;
     if (texture != null) texture1 = texture.getMipMappedTexture(1);
   }
 }