2011-11-18 10:28:17 -08:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Android code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009-2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Patrick Walton <pcwalton@mozilla.com>
|
2012-02-08 21:13:08 -08:00
|
|
|
* Arkady Blyakher <rkadyb@mit.edu>
|
2011-11-18 10:28:17 -08:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
package org.mozilla.gecko.gfx;
|
|
|
|
|
2012-02-02 01:02:32 -08:00
|
|
|
import android.graphics.Point;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.graphics.Rect;
|
2011-12-01 14:05:41 -08:00
|
|
|
import android.graphics.RectF;
|
2012-02-02 01:02:32 -08:00
|
|
|
import android.graphics.Region;
|
2011-12-15 15:45:52 -08:00
|
|
|
import android.opengl.GLES20;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.util.Log;
|
|
|
|
import java.nio.Buffer;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
import java.nio.ByteOrder;
|
|
|
|
import java.nio.FloatBuffer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class for tile layers, which encapsulate the logic needed to draw textured tiles in OpenGL
|
|
|
|
* ES.
|
|
|
|
*/
|
|
|
|
public abstract class TileLayer extends Layer {
|
2011-11-18 18:07:14 -08:00
|
|
|
private static final String LOGTAG = "GeckoTileLayer";
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2011-12-22 03:35:17 -08:00
|
|
|
private final Rect mDirtyRect;
|
2011-12-15 15:45:52 -08:00
|
|
|
private IntSize mSize;
|
2011-11-18 18:07:14 -08:00
|
|
|
private int[] mTextureIDs;
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-04-27 13:04:47 -07:00
|
|
|
protected final CairoImage mImage;
|
|
|
|
|
2012-04-24 12:13:36 -07:00
|
|
|
public enum PaintMode { NORMAL, REPEAT, STRETCH };
|
|
|
|
private PaintMode mPaintMode;
|
|
|
|
|
|
|
|
public TileLayer(CairoImage image, PaintMode paintMode) {
|
2012-02-26 07:47:47 -08:00
|
|
|
super(image.getSize());
|
|
|
|
|
2012-04-24 12:13:36 -07:00
|
|
|
mPaintMode = paintMode;
|
2011-11-18 18:07:14 -08:00
|
|
|
mImage = image;
|
2011-12-15 15:45:52 -08:00
|
|
|
mSize = new IntSize(0, 0);
|
2011-12-22 03:35:17 -08:00
|
|
|
mDirtyRect = new Rect();
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
|
2012-04-24 12:13:36 -07:00
|
|
|
protected boolean repeats() { return mPaintMode == PaintMode.REPEAT; }
|
|
|
|
protected boolean stretches() { return mPaintMode == PaintMode.STRETCH; }
|
2011-11-18 10:28:17 -08:00
|
|
|
protected int getTextureID() { return mTextureIDs[0]; }
|
2011-12-01 14:05:41 -08:00
|
|
|
protected boolean initialized() { return mImage != null && mTextureIDs != null; }
|
2011-11-18 10:28:17 -08:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void finalize() throws Throwable {
|
|
|
|
if (mTextureIDs != null)
|
|
|
|
TextureReaper.get().add(mTextureIDs);
|
|
|
|
}
|
|
|
|
|
2012-04-26 10:45:31 -07:00
|
|
|
public void setPaintMode(PaintMode mode) {
|
|
|
|
mPaintMode = mode;
|
2012-02-26 07:47:47 -08:00
|
|
|
}
|
|
|
|
|
2011-11-18 18:07:14 -08:00
|
|
|
/**
|
2012-03-31 10:02:37 -07:00
|
|
|
* Invalidates the entire buffer so that it will be uploaded again. Only valid inside a
|
2011-11-18 18:07:14 -08:00
|
|
|
* transaction.
|
|
|
|
*/
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2011-11-18 18:07:14 -08:00
|
|
|
public void invalidate() {
|
2012-03-31 10:02:37 -07:00
|
|
|
if (!inTransaction())
|
|
|
|
throw new RuntimeException("invalidate() is only valid inside a transaction");
|
2011-12-15 15:45:52 -08:00
|
|
|
IntSize bufferSize = mImage.getSize();
|
2012-03-31 10:04:14 -07:00
|
|
|
mDirtyRect.set(0, 0, bufferSize.width, bufferSize.height);
|
2011-12-15 15:45:52 -08:00
|
|
|
}
|
|
|
|
|
2012-02-08 21:13:08 -08:00
|
|
|
private void validateTexture() {
|
2011-12-15 15:45:52 -08:00
|
|
|
/* Calculate the ideal texture size. This must be a power of two if
|
|
|
|
* the texture is repeated or OpenGL ES 2.0 isn't supported, as
|
|
|
|
* OpenGL ES 2.0 is required for NPOT texture support (without
|
|
|
|
* extensions), but doesn't support repeating NPOT textures.
|
|
|
|
*
|
|
|
|
* XXX Currently, we don't pick a GLES 2.0 context, so always round.
|
|
|
|
*/
|
2012-04-26 10:45:17 -07:00
|
|
|
IntSize textureSize = mImage.getSize().nextPowerOfTwo();
|
2011-12-15 15:45:52 -08:00
|
|
|
|
|
|
|
if (!textureSize.equals(mSize)) {
|
|
|
|
mSize = textureSize;
|
|
|
|
|
|
|
|
// Delete the old texture
|
|
|
|
if (mTextureIDs != null) {
|
|
|
|
TextureReaper.get().add(mTextureIDs);
|
|
|
|
mTextureIDs = null;
|
|
|
|
|
2011-12-23 16:49:00 -08:00
|
|
|
// Free the texture immediately, so we don't incur a
|
|
|
|
// temporarily increased memory usage.
|
2012-02-08 21:13:08 -08:00
|
|
|
TextureReaper.get().reap();
|
2011-12-15 15:45:52 -08:00
|
|
|
}
|
|
|
|
}
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
|
2011-11-18 18:07:14 -08:00
|
|
|
@Override
|
2012-04-05 08:32:16 -07:00
|
|
|
protected void performUpdates(RenderContext context) {
|
2012-02-08 21:13:08 -08:00
|
|
|
super.performUpdates(context);
|
2012-01-06 03:22:52 -08:00
|
|
|
|
2011-12-15 15:45:52 -08:00
|
|
|
// Reallocate the texture if the size has changed
|
2012-02-08 21:13:08 -08:00
|
|
|
validateTexture();
|
2011-12-15 15:45:52 -08:00
|
|
|
|
|
|
|
// Don't do any work if the image has an invalid size.
|
|
|
|
if (!mImage.getSize().isPositive())
|
2012-04-05 08:32:16 -07:00
|
|
|
return;
|
2011-12-15 15:45:52 -08:00
|
|
|
|
2012-02-04 15:49:59 -08:00
|
|
|
// If we haven't allocated a texture, assume the whole region is dirty
|
|
|
|
if (mTextureIDs == null) {
|
2012-02-08 21:13:08 -08:00
|
|
|
uploadFullTexture();
|
2012-02-04 15:49:59 -08:00
|
|
|
} else {
|
2012-02-08 21:13:08 -08:00
|
|
|
uploadDirtyRect(mDirtyRect);
|
2012-02-04 15:49:59 -08:00
|
|
|
}
|
|
|
|
|
2011-12-22 03:35:17 -08:00
|
|
|
mDirtyRect.setEmpty();
|
2011-11-18 18:07:14 -08:00
|
|
|
}
|
|
|
|
|
2012-02-08 21:13:08 -08:00
|
|
|
private void uploadFullTexture() {
|
2011-12-15 15:45:52 -08:00
|
|
|
IntSize bufferSize = mImage.getSize();
|
2012-02-08 21:13:08 -08:00
|
|
|
uploadDirtyRect(new Rect(0, 0, bufferSize.width, bufferSize.height));
|
2012-02-04 15:49:59 -08:00
|
|
|
}
|
2011-12-22 03:35:17 -08:00
|
|
|
|
2012-02-08 21:13:08 -08:00
|
|
|
private void uploadDirtyRect(Rect dirtyRect) {
|
2011-12-23 16:49:00 -08:00
|
|
|
// If we have nothing to upload, just return for now
|
2011-12-22 03:35:17 -08:00
|
|
|
if (dirtyRect.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2011-12-23 16:49:00 -08:00
|
|
|
// It's possible that the buffer will be null, check for that and return
|
|
|
|
ByteBuffer imageBuffer = mImage.getBuffer();
|
|
|
|
if (imageBuffer == null)
|
|
|
|
return;
|
|
|
|
|
2011-12-15 15:45:52 -08:00
|
|
|
if (mTextureIDs == null) {
|
|
|
|
mTextureIDs = new int[1];
|
2012-02-08 21:13:08 -08:00
|
|
|
GLES20.glGenTextures(mTextureIDs.length, mTextureIDs, 0);
|
2011-12-15 15:45:52 -08:00
|
|
|
}
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
int cairoFormat = mImage.getFormat();
|
2011-11-18 18:07:14 -08:00
|
|
|
CairoGLInfo glInfo = new CairoGLInfo(cairoFormat);
|
|
|
|
|
2012-02-08 21:13:08 -08:00
|
|
|
bindAndSetGLParameters();
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-04-26 10:45:17 -07:00
|
|
|
// XXX TexSubImage2D is too broken to rely on on Adreno, and very slow
|
|
|
|
// on other chipsets, so we always upload the entire buffer.
|
|
|
|
IntSize bufferSize = mImage.getSize();
|
|
|
|
if (mSize.equals(bufferSize)) {
|
|
|
|
GLES20.glTexImage2D(GLES20.GL_TEXTURE_2D, 0, glInfo.internalFormat, mSize.width,
|
|
|
|
mSize.height, 0, glInfo.format, glInfo.type, imageBuffer);
|
|
|
|
} else {
|
|
|
|
// Our texture has been expanded to the next power of two.
|
|
|
|
// XXX We probably never want to take this path, so throw an exception.
|
|
|
|
throw new RuntimeException("Buffer/image size mismatch in TileLayer!");
|
|
|
|
|
|
|
|
/*
|
|
|
|
int bpp = CairoUtils.bitsPerPixelForCairoFormat(cairoFormat)/8;
|
|
|
|
ByteBuffer tempBuffer =
|
|
|
|
GeckoAppShell.allocateDirectBuffer(mSize.width * mSize.height * bpp);
|
|
|
|
for (int y = 0; y < bufferSize.height; y++) {
|
|
|
|
tempBuffer.position(y * mSize.width * bpp);
|
|
|
|
imageBuffer.limit((y + 1) * bufferSize.width * bpp);
|
|
|
|
imageBuffer.position(y * bufferSize.width * bpp);
|
|
|
|
tempBuffer.put(imageBuffer);
|
|
|
|
}
|
|
|
|
imageBuffer.position(0);
|
|
|
|
tempBuffer.position(0);
|
|
|
|
|
|
|
|
GLES20.glTexImage2D(GLES20.GL_TEXTURE_2D, 0, glInfo.internalFormat, mSize.width,
|
|
|
|
mSize.height, 0, glInfo.format, glInfo.type, tempBuffer);
|
|
|
|
GeckoAppShell.freeDirectBuffer(tempBuffer);
|
|
|
|
*/
|
|
|
|
}
|
2011-11-18 18:07:14 -08:00
|
|
|
}
|
|
|
|
|
2012-02-08 21:13:08 -08:00
|
|
|
private void bindAndSetGLParameters() {
|
|
|
|
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, mTextureIDs[0]);
|
|
|
|
GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER,
|
|
|
|
GLES20.GL_NEAREST);
|
|
|
|
GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MAG_FILTER,
|
|
|
|
GLES20.GL_LINEAR);
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-04-24 12:13:36 -07:00
|
|
|
int repeatMode = repeats() ? GLES20.GL_REPEAT : GLES20.GL_CLAMP_TO_EDGE;
|
2012-02-08 21:13:08 -08:00
|
|
|
GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_S, repeatMode);
|
|
|
|
GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_T, repeatMode);
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|