2010-07-30 19:18:16 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define LOG_TAG "OpenGLRenderer"
|
|
|
|
|
|
|
|
#include <utils/Log.h>
|
|
|
|
|
|
|
|
#include <SkMatrix.h>
|
|
|
|
|
2011-12-13 14:55:06 -08:00
|
|
|
#include "Caches.h"
|
2010-07-30 19:18:16 -07:00
|
|
|
#include "SkiaShader.h"
|
|
|
|
#include "Texture.h"
|
|
|
|
#include "Matrix.h"
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace uirenderer {
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Support
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static const GLint gTileModes[] = {
|
|
|
|
GL_CLAMP_TO_EDGE, // == SkShader::kClamp_TileMode
|
|
|
|
GL_REPEAT, // == SkShader::kRepeat_Mode
|
|
|
|
GL_MIRRORED_REPEAT // == SkShader::kMirror_TileMode
|
|
|
|
};
|
|
|
|
|
2012-07-30 14:47:51 -07:00
|
|
|
/**
|
|
|
|
* This function does not work for n == 0.
|
|
|
|
*/
|
|
|
|
static inline bool isPowerOfTwo(unsigned int n) {
|
|
|
|
return !(n & (n - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void bindUniformColor(int slot, uint32_t color) {
|
2012-08-29 21:49:00 -07:00
|
|
|
const float a = ((color >> 24) & 0xff) / 255.0f;
|
2012-07-30 14:47:51 -07:00
|
|
|
glUniform4f(slot,
|
2012-08-29 21:49:00 -07:00
|
|
|
a * ((color >> 16) & 0xff) / 255.0f,
|
|
|
|
a * ((color >> 8) & 0xff) / 255.0f,
|
|
|
|
a * ((color ) & 0xff) / 255.0f,
|
|
|
|
a);
|
2012-07-30 14:47:51 -07:00
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Base shader
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-01-14 15:31:00 -08:00
|
|
|
void SkiaShader::copyFrom(const SkiaShader& shader) {
|
|
|
|
mType = shader.mType;
|
|
|
|
mKey = shader.mKey;
|
|
|
|
mTileX = shader.mTileX;
|
|
|
|
mTileY = shader.mTileY;
|
|
|
|
mBlend = shader.mBlend;
|
|
|
|
mUnitMatrix = shader.mUnitMatrix;
|
|
|
|
mShaderMatrix = shader.mShaderMatrix;
|
|
|
|
mGenerationId = shader.mGenerationId;
|
|
|
|
}
|
|
|
|
|
2013-06-04 18:00:09 -07:00
|
|
|
SkiaShader::SkiaShader(): mCaches(NULL) {
|
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
SkiaShader::SkiaShader(Type type, SkShader* key, SkShader::TileMode tileX,
|
|
|
|
SkShader::TileMode tileY, SkMatrix* matrix, bool blend):
|
2013-06-04 18:00:09 -07:00
|
|
|
mType(type), mKey(key), mTileX(tileX), mTileY(tileY), mBlend(blend),
|
|
|
|
mCaches(NULL) {
|
2010-10-07 15:07:45 -07:00
|
|
|
setMatrix(matrix);
|
2011-01-14 15:31:00 -08:00
|
|
|
mGenerationId = 0;
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
SkiaShader::~SkiaShader() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkiaShader::describe(ProgramDescription& description, const Extensions& extensions) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkiaShader::setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
|
|
|
|
GLuint* textureUnit) {
|
|
|
|
}
|
|
|
|
|
2010-11-11 12:06:27 -08:00
|
|
|
void SkiaShader::bindTexture(Texture* texture, GLenum wrapS, GLenum wrapT) {
|
2013-06-04 18:00:09 -07:00
|
|
|
mCaches->bindTexture(texture->id);
|
2011-11-30 20:21:23 -08:00
|
|
|
texture->setWrapST(wrapS, wrapT);
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
2010-10-07 15:07:45 -07:00
|
|
|
void SkiaShader::computeScreenSpaceMatrix(mat4& screenSpace, const mat4& modelView) {
|
|
|
|
screenSpace.loadMultiply(mUnitMatrix, mShaderMatrix);
|
|
|
|
screenSpace.multiply(modelView);
|
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Bitmap shader
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
SkiaBitmapShader::SkiaBitmapShader(SkBitmap* bitmap, SkShader* key, SkShader::TileMode tileX,
|
|
|
|
SkShader::TileMode tileY, SkMatrix* matrix, bool blend):
|
2010-08-07 23:46:15 -07:00
|
|
|
SkiaShader(kBitmap, key, tileX, tileY, matrix, blend), mBitmap(bitmap), mTexture(NULL) {
|
2010-10-07 15:07:45 -07:00
|
|
|
updateLocalMatrix(matrix);
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
2011-01-14 15:31:00 -08:00
|
|
|
SkiaShader* SkiaBitmapShader::copy() {
|
|
|
|
SkiaBitmapShader* copy = new SkiaBitmapShader();
|
|
|
|
copy->copyFrom(*this);
|
|
|
|
copy->mBitmap = mBitmap;
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
void SkiaBitmapShader::describe(ProgramDescription& description, const Extensions& extensions) {
|
2013-06-04 18:00:09 -07:00
|
|
|
Texture* texture = mCaches->textureCache.get(mBitmap);
|
2010-08-07 23:46:15 -07:00
|
|
|
if (!texture) return;
|
|
|
|
mTexture = texture;
|
2010-07-30 19:18:16 -07:00
|
|
|
|
|
|
|
const float width = texture->width;
|
|
|
|
const float height = texture->height;
|
|
|
|
|
|
|
|
description.hasBitmap = true;
|
|
|
|
// The driver does not support non-power of two mirrored/repeated
|
|
|
|
// textures, so do it ourselves
|
2010-08-09 20:48:09 -07:00
|
|
|
if (!extensions.hasNPot() && (!isPowerOfTwo(width) || !isPowerOfTwo(height)) &&
|
|
|
|
(mTileX != SkShader::kClamp_TileMode || mTileY != SkShader::kClamp_TileMode)) {
|
2010-07-30 19:18:16 -07:00
|
|
|
description.isBitmapNpot = true;
|
|
|
|
description.bitmapWrapS = gTileModes[mTileX];
|
|
|
|
description.bitmapWrapT = gTileModes[mTileY];
|
2010-09-22 16:10:57 -07:00
|
|
|
mWrapS = GL_CLAMP_TO_EDGE;
|
|
|
|
mWrapT = GL_CLAMP_TO_EDGE;
|
|
|
|
} else {
|
|
|
|
mWrapS = gTileModes[mTileX];
|
|
|
|
mWrapT = gTileModes[mTileY];
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkiaBitmapShader::setupProgram(Program* program, const mat4& modelView,
|
|
|
|
const Snapshot& snapshot, GLuint* textureUnit) {
|
|
|
|
GLuint textureSlot = (*textureUnit)++;
|
2011-12-13 14:55:06 -08:00
|
|
|
Caches::getInstance().activeTexture(textureSlot);
|
2010-08-07 23:46:15 -07:00
|
|
|
|
2010-10-25 18:03:28 -07:00
|
|
|
Texture* texture = mTexture;
|
2010-08-07 23:46:15 -07:00
|
|
|
mTexture = NULL;
|
|
|
|
if (!texture) return;
|
|
|
|
const AutoTexture autoCleanup(texture);
|
2010-07-30 19:18:16 -07:00
|
|
|
|
|
|
|
const float width = texture->width;
|
|
|
|
const float height = texture->height;
|
|
|
|
|
|
|
|
mat4 textureTransform;
|
2010-10-07 15:07:45 -07:00
|
|
|
computeScreenSpaceMatrix(textureTransform, modelView);
|
2010-07-30 19:18:16 -07:00
|
|
|
|
|
|
|
// Uniforms
|
2010-11-11 12:06:27 -08:00
|
|
|
bindTexture(texture, mWrapS, mWrapT);
|
2011-11-30 20:21:23 -08:00
|
|
|
texture->setFilter(GL_LINEAR);
|
2011-07-25 16:36:01 -07:00
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
glUniform1i(program->getUniform("bitmapSampler"), textureSlot);
|
|
|
|
glUniformMatrix4fv(program->getUniform("textureTransform"), 1,
|
|
|
|
GL_FALSE, &textureTransform.data[0]);
|
|
|
|
glUniform2f(program->getUniform("textureDimension"), 1.0f / width, 1.0f / height);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Linear gradient shader
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-10-06 16:57:29 -07:00
|
|
|
static void toUnitMatrix(const SkPoint pts[2], SkMatrix* matrix) {
|
|
|
|
SkVector vec = pts[1] - pts[0];
|
|
|
|
const float mag = vec.length();
|
|
|
|
const float inv = mag ? 1.0f / mag : 0;
|
|
|
|
|
|
|
|
vec.scale(inv);
|
|
|
|
matrix->setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY);
|
|
|
|
matrix->postTranslate(-pts[0].fX, -pts[0].fY);
|
|
|
|
matrix->postScale(inv, inv);
|
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
SkiaLinearGradientShader::SkiaLinearGradientShader(float* bounds, uint32_t* colors,
|
|
|
|
float* positions, int count, SkShader* key, SkShader::TileMode tileMode,
|
|
|
|
SkMatrix* matrix, bool blend):
|
|
|
|
SkiaShader(kLinearGradient, key, tileMode, tileMode, matrix, blend),
|
|
|
|
mBounds(bounds), mColors(colors), mPositions(positions), mCount(count) {
|
2010-10-06 16:57:29 -07:00
|
|
|
SkPoint points[2];
|
|
|
|
points[0].set(bounds[0], bounds[1]);
|
|
|
|
points[1].set(bounds[2], bounds[3]);
|
|
|
|
|
|
|
|
SkMatrix unitMatrix;
|
|
|
|
toUnitMatrix(points, &unitMatrix);
|
|
|
|
mUnitMatrix.load(unitMatrix);
|
|
|
|
|
|
|
|
updateLocalMatrix(matrix);
|
2012-07-30 14:47:51 -07:00
|
|
|
|
|
|
|
mIsSimple = count == 2 && tileMode == SkShader::kClamp_TileMode;
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
SkiaLinearGradientShader::~SkiaLinearGradientShader() {
|
2010-08-06 10:57:58 -07:00
|
|
|
delete[] mBounds;
|
|
|
|
delete[] mColors;
|
|
|
|
delete[] mPositions;
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
2011-01-14 15:31:00 -08:00
|
|
|
SkiaShader* SkiaLinearGradientShader::copy() {
|
|
|
|
SkiaLinearGradientShader* copy = new SkiaLinearGradientShader();
|
|
|
|
copy->copyFrom(*this);
|
2011-01-14 18:51:01 -08:00
|
|
|
copy->mBounds = new float[4];
|
|
|
|
memcpy(copy->mBounds, mBounds, sizeof(float) * 4);
|
|
|
|
copy->mColors = new uint32_t[mCount];
|
|
|
|
memcpy(copy->mColors, mColors, sizeof(uint32_t) * mCount);
|
|
|
|
copy->mPositions = new float[mCount];
|
|
|
|
memcpy(copy->mPositions, mPositions, sizeof(float) * mCount);
|
2011-01-14 15:31:00 -08:00
|
|
|
copy->mCount = mCount;
|
2012-07-30 14:47:51 -07:00
|
|
|
copy->mIsSimple = mIsSimple;
|
2011-01-14 15:31:00 -08:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
void SkiaLinearGradientShader::describe(ProgramDescription& description,
|
|
|
|
const Extensions& extensions) {
|
|
|
|
description.hasGradient = true;
|
2010-09-20 17:53:08 -07:00
|
|
|
description.gradientType = ProgramDescription::kGradientLinear;
|
2012-07-30 14:47:51 -07:00
|
|
|
description.isSimpleGradient = mIsSimple;
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void SkiaLinearGradientShader::setupProgram(Program* program, const mat4& modelView,
|
|
|
|
const Snapshot& snapshot, GLuint* textureUnit) {
|
2012-07-30 14:47:51 -07:00
|
|
|
if (CC_UNLIKELY(!mIsSimple)) {
|
|
|
|
GLuint textureSlot = (*textureUnit)++;
|
|
|
|
Caches::getInstance().activeTexture(textureSlot);
|
|
|
|
|
2013-06-04 18:00:09 -07:00
|
|
|
Texture* texture = mCaches->gradientCache.get(mColors, mPositions, mCount);
|
2010-07-30 19:18:16 -07:00
|
|
|
|
2012-07-30 14:47:51 -07:00
|
|
|
// Uniforms
|
|
|
|
bindTexture(texture, gTileModes[mTileX], gTileModes[mTileY]);
|
|
|
|
glUniform1i(program->getUniform("gradientSampler"), textureSlot);
|
|
|
|
} else {
|
|
|
|
bindUniformColor(program->getUniform("startColor"), mColors[0]);
|
|
|
|
bindUniformColor(program->getUniform("endColor"), mColors[1]);
|
|
|
|
}
|
2010-07-30 19:18:16 -07:00
|
|
|
|
2012-07-31 21:16:07 -07:00
|
|
|
Caches::getInstance().dither.setupProgram(program, textureUnit);
|
|
|
|
|
2010-10-06 16:57:29 -07:00
|
|
|
mat4 screenSpace;
|
|
|
|
computeScreenSpaceMatrix(screenSpace, modelView);
|
2010-07-30 19:18:16 -07:00
|
|
|
glUniformMatrix4fv(program->getUniform("screenSpace"), 1, GL_FALSE, &screenSpace.data[0]);
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:04:33 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Circular gradient shader
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-10-07 15:07:45 -07:00
|
|
|
static void toCircularUnitMatrix(const float x, const float y, const float radius,
|
|
|
|
SkMatrix* matrix) {
|
|
|
|
const float inv = 1.0f / radius;
|
|
|
|
matrix->setTranslate(-x, -y);
|
|
|
|
matrix->postScale(inv, inv);
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:04:33 -07:00
|
|
|
SkiaCircularGradientShader::SkiaCircularGradientShader(float x, float y, float radius,
|
|
|
|
uint32_t* colors, float* positions, int count, SkShader* key, SkShader::TileMode tileMode,
|
|
|
|
SkMatrix* matrix, bool blend):
|
|
|
|
SkiaSweepGradientShader(kCircularGradient, x, y, colors, positions, count, key,
|
2010-10-07 15:07:45 -07:00
|
|
|
tileMode, matrix, blend) {
|
|
|
|
SkMatrix unitMatrix;
|
|
|
|
toCircularUnitMatrix(x, y, radius, &unitMatrix);
|
|
|
|
mUnitMatrix.load(unitMatrix);
|
|
|
|
|
|
|
|
updateLocalMatrix(matrix);
|
2010-09-20 19:04:33 -07:00
|
|
|
}
|
|
|
|
|
2011-01-14 15:31:00 -08:00
|
|
|
SkiaShader* SkiaCircularGradientShader::copy() {
|
|
|
|
SkiaCircularGradientShader* copy = new SkiaCircularGradientShader();
|
|
|
|
copy->copyFrom(*this);
|
2011-01-14 18:51:01 -08:00
|
|
|
copy->mColors = new uint32_t[mCount];
|
|
|
|
memcpy(copy->mColors, mColors, sizeof(uint32_t) * mCount);
|
|
|
|
copy->mPositions = new float[mCount];
|
|
|
|
memcpy(copy->mPositions, mPositions, sizeof(float) * mCount);
|
2011-01-14 15:31:00 -08:00
|
|
|
copy->mCount = mCount;
|
2012-07-30 14:47:51 -07:00
|
|
|
copy->mIsSimple = mIsSimple;
|
2011-01-14 15:31:00 -08:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2010-09-20 19:04:33 -07:00
|
|
|
void SkiaCircularGradientShader::describe(ProgramDescription& description,
|
|
|
|
const Extensions& extensions) {
|
|
|
|
description.hasGradient = true;
|
|
|
|
description.gradientType = ProgramDescription::kGradientCircular;
|
2012-07-30 14:47:51 -07:00
|
|
|
description.isSimpleGradient = mIsSimple;
|
2010-09-20 19:04:33 -07:00
|
|
|
}
|
|
|
|
|
2010-09-20 17:53:08 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Sweep gradient shader
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-10-07 15:07:45 -07:00
|
|
|
static void toSweepUnitMatrix(const float x, const float y, SkMatrix* matrix) {
|
|
|
|
matrix->setTranslate(-x, -y);
|
|
|
|
}
|
|
|
|
|
2010-09-20 17:53:08 -07:00
|
|
|
SkiaSweepGradientShader::SkiaSweepGradientShader(float x, float y, uint32_t* colors,
|
|
|
|
float* positions, int count, SkShader* key, SkMatrix* matrix, bool blend):
|
|
|
|
SkiaShader(kSweepGradient, key, SkShader::kClamp_TileMode,
|
|
|
|
SkShader::kClamp_TileMode, matrix, blend),
|
2010-10-07 15:07:45 -07:00
|
|
|
mColors(colors), mPositions(positions), mCount(count) {
|
|
|
|
SkMatrix unitMatrix;
|
|
|
|
toSweepUnitMatrix(x, y, &unitMatrix);
|
|
|
|
mUnitMatrix.load(unitMatrix);
|
|
|
|
|
|
|
|
updateLocalMatrix(matrix);
|
2012-07-30 14:47:51 -07:00
|
|
|
|
|
|
|
mIsSimple = count == 2;
|
2010-09-20 17:53:08 -07:00
|
|
|
}
|
|
|
|
|
2010-09-20 19:04:33 -07:00
|
|
|
SkiaSweepGradientShader::SkiaSweepGradientShader(Type type, float x, float y, uint32_t* colors,
|
|
|
|
float* positions, int count, SkShader* key, SkShader::TileMode tileMode,
|
|
|
|
SkMatrix* matrix, bool blend):
|
|
|
|
SkiaShader(type, key, tileMode, tileMode, matrix, blend),
|
2010-10-07 15:07:45 -07:00
|
|
|
mColors(colors), mPositions(positions), mCount(count) {
|
2012-07-30 14:47:51 -07:00
|
|
|
|
|
|
|
mIsSimple = count == 2 && tileMode == SkShader::kClamp_TileMode;
|
2010-09-20 19:04:33 -07:00
|
|
|
}
|
|
|
|
|
2010-09-20 17:53:08 -07:00
|
|
|
SkiaSweepGradientShader::~SkiaSweepGradientShader() {
|
|
|
|
delete[] mColors;
|
|
|
|
delete[] mPositions;
|
|
|
|
}
|
|
|
|
|
2011-01-14 15:31:00 -08:00
|
|
|
SkiaShader* SkiaSweepGradientShader::copy() {
|
|
|
|
SkiaSweepGradientShader* copy = new SkiaSweepGradientShader();
|
|
|
|
copy->copyFrom(*this);
|
2011-01-14 18:51:01 -08:00
|
|
|
copy->mColors = new uint32_t[mCount];
|
|
|
|
memcpy(copy->mColors, mColors, sizeof(uint32_t) * mCount);
|
|
|
|
copy->mPositions = new float[mCount];
|
|
|
|
memcpy(copy->mPositions, mPositions, sizeof(float) * mCount);
|
2011-01-14 15:31:00 -08:00
|
|
|
copy->mCount = mCount;
|
2012-07-30 14:47:51 -07:00
|
|
|
copy->mIsSimple = mIsSimple;
|
2011-01-14 15:31:00 -08:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2010-09-20 17:53:08 -07:00
|
|
|
void SkiaSweepGradientShader::describe(ProgramDescription& description,
|
|
|
|
const Extensions& extensions) {
|
|
|
|
description.hasGradient = true;
|
|
|
|
description.gradientType = ProgramDescription::kGradientSweep;
|
2012-07-30 14:47:51 -07:00
|
|
|
description.isSimpleGradient = mIsSimple;
|
2010-09-20 17:53:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void SkiaSweepGradientShader::setupProgram(Program* program, const mat4& modelView,
|
|
|
|
const Snapshot& snapshot, GLuint* textureUnit) {
|
2012-07-30 14:47:51 -07:00
|
|
|
if (CC_UNLIKELY(!mIsSimple)) {
|
|
|
|
GLuint textureSlot = (*textureUnit)++;
|
|
|
|
Caches::getInstance().activeTexture(textureSlot);
|
2010-09-20 17:53:08 -07:00
|
|
|
|
2013-06-04 18:00:09 -07:00
|
|
|
Texture* texture = mCaches->gradientCache.get(mColors, mPositions, mCount);
|
2012-07-30 14:47:51 -07:00
|
|
|
|
|
|
|
// Uniforms
|
|
|
|
bindTexture(texture, gTileModes[mTileX], gTileModes[mTileY]);
|
|
|
|
glUniform1i(program->getUniform("gradientSampler"), textureSlot);
|
|
|
|
} else {
|
|
|
|
bindUniformColor(program->getUniform("startColor"), mColors[0]);
|
|
|
|
bindUniformColor(program->getUniform("endColor"), mColors[1]);
|
|
|
|
}
|
2010-09-20 17:53:08 -07:00
|
|
|
|
2013-06-04 18:00:09 -07:00
|
|
|
mCaches->dither.setupProgram(program, textureUnit);
|
2012-07-31 21:16:07 -07:00
|
|
|
|
2010-10-07 15:07:45 -07:00
|
|
|
mat4 screenSpace;
|
|
|
|
computeScreenSpaceMatrix(screenSpace, modelView);
|
2010-09-20 17:53:08 -07:00
|
|
|
glUniformMatrix4fv(program->getUniform("screenSpace"), 1, GL_FALSE, &screenSpace.data[0]);
|
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Compose shader
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
SkiaComposeShader::SkiaComposeShader(SkiaShader* first, SkiaShader* second,
|
|
|
|
SkXfermode::Mode mode, SkShader* key):
|
|
|
|
SkiaShader(kCompose, key, SkShader::kClamp_TileMode, SkShader::kClamp_TileMode,
|
2011-01-14 18:51:01 -08:00
|
|
|
NULL, first->blend() || second->blend()),
|
|
|
|
mFirst(first), mSecond(second), mMode(mode), mCleanup(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
SkiaComposeShader::~SkiaComposeShader() {
|
|
|
|
if (mCleanup) {
|
|
|
|
delete mFirst;
|
|
|
|
delete mSecond;
|
|
|
|
}
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
2011-01-14 15:31:00 -08:00
|
|
|
SkiaShader* SkiaComposeShader::copy() {
|
|
|
|
SkiaComposeShader* copy = new SkiaComposeShader();
|
|
|
|
copy->copyFrom(*this);
|
2011-01-14 18:51:01 -08:00
|
|
|
copy->mFirst = mFirst->copy();
|
|
|
|
copy->mSecond = mSecond->copy();
|
2011-01-14 15:31:00 -08:00
|
|
|
copy->mMode = mMode;
|
2011-01-14 18:51:01 -08:00
|
|
|
copy->cleanup();
|
2011-01-14 15:31:00 -08:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2010-07-30 19:18:16 -07:00
|
|
|
void SkiaComposeShader::describe(ProgramDescription& description, const Extensions& extensions) {
|
|
|
|
mFirst->describe(description, extensions);
|
|
|
|
mSecond->describe(description, extensions);
|
|
|
|
if (mFirst->type() == kBitmap) {
|
|
|
|
description.isBitmapFirst = true;
|
|
|
|
}
|
|
|
|
description.shadersMode = mMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkiaComposeShader::setupProgram(Program* program, const mat4& modelView,
|
|
|
|
const Snapshot& snapshot, GLuint* textureUnit) {
|
2013-03-18 19:30:48 -07:00
|
|
|
// Apply this compose shader's local transform and pass it down to
|
|
|
|
// the child shaders. They will in turn apply their local transform
|
|
|
|
// to this matrix.
|
|
|
|
mat4 transform;
|
|
|
|
computeScreenSpaceMatrix(transform, modelView);
|
|
|
|
|
|
|
|
mFirst->setupProgram(program, transform, snapshot, textureUnit);
|
|
|
|
mSecond->setupProgram(program, transform, snapshot, textureUnit);
|
2010-07-30 19:18:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}; // namespace uirenderer
|
|
|
|
}; // namespace android
|