blob: 701314d3c0b8348a09fe1637894906e030498002 [file] [log] [blame]
Romain Guy5cbbce52010-06-27 22:59:20 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "OpenGLRenderer"
18
19#include "Program.h"
20
21namespace android {
22namespace uirenderer {
23
24///////////////////////////////////////////////////////////////////////////////
Romain Guy5cbbce52010-06-27 22:59:20 -070025// Base program
26///////////////////////////////////////////////////////////////////////////////
27
Romain Guy3e263fa2011-12-12 16:47:48 -080028// TODO: Program instance should be created from a factory method
Romain Guyf3a910b42011-12-12 20:35:21 -080029Program::Program(const ProgramDescription& description, const char* vertex, const char* fragment) {
Romain Guy67f27952010-12-07 20:09:23 -080030 mInitialized = false;
Romain Guy05bbde72011-12-09 12:55:37 -080031 mHasColorUniform = false;
Romain Guy2d4fd362011-12-13 22:00:19 -080032 mHasSampler = false;
Romain Guy3e263fa2011-12-12 16:47:48 -080033 mUse = false;
Romain Guy67f27952010-12-07 20:09:23 -080034
Romain Guy24edca82011-12-09 13:08:06 -080035 // No need to cache compiled shaders, rely instead on Android's
36 // persistent shaders cache
Romain Guy3e263fa2011-12-12 16:47:48 -080037 mVertexShader = buildShader(vertex, GL_VERTEX_SHADER);
38 if (mVertexShader) {
39 mFragmentShader = buildShader(fragment, GL_FRAGMENT_SHADER);
40 if (mFragmentShader) {
Romain Guy05bbde72011-12-09 12:55:37 -080041 mProgramId = glCreateProgram();
Romain Guy3e263fa2011-12-12 16:47:48 -080042
43 glAttachShader(mProgramId, mVertexShader);
44 glAttachShader(mProgramId, mFragmentShader);
45
46 position = bindAttrib("position", kBindingPosition);
Romain Guyf3a910b42011-12-12 20:35:21 -080047 if (description.hasTexture || description.hasExternalTexture) {
48 texCoords = bindAttrib("texCoords", kBindingTexCoords);
49 } else {
50 texCoords = -1;
51 }
52
Romain Guy05bbde72011-12-09 12:55:37 -080053 glLinkProgram(mProgramId);
Romain Guy67f27952010-12-07 20:09:23 -080054
55 GLint status;
Romain Guy05bbde72011-12-09 12:55:37 -080056 glGetProgramiv(mProgramId, GL_LINK_STATUS, &status);
Romain Guy67f27952010-12-07 20:09:23 -080057 if (status != GL_TRUE) {
58 LOGE("Error while linking shaders:");
59 GLint infoLen = 0;
Romain Guy05bbde72011-12-09 12:55:37 -080060 glGetProgramiv(mProgramId, GL_INFO_LOG_LENGTH, &infoLen);
Romain Guy67f27952010-12-07 20:09:23 -080061 if (infoLen > 1) {
62 GLchar log[infoLen];
Romain Guy05bbde72011-12-09 12:55:37 -080063 glGetProgramInfoLog(mProgramId, infoLen, 0, &log[0]);
Romain Guy67f27952010-12-07 20:09:23 -080064 LOGE("%s", log);
65 }
Romain Guy3e263fa2011-12-12 16:47:48 -080066
67 glDetachShader(mProgramId, mVertexShader);
68 glDetachShader(mProgramId, mFragmentShader);
69
70 glDeleteShader(mVertexShader);
71 glDeleteShader(mFragmentShader);
72
73 glDeleteProgram(mProgramId);
Romain Guy67f27952010-12-07 20:09:23 -080074 } else {
75 mInitialized = true;
76 }
Romain Guy05bbde72011-12-09 12:55:37 -080077 } else {
Romain Guy3e263fa2011-12-12 16:47:48 -080078 glDeleteShader(mVertexShader);
Romain Guy5cbbce52010-06-27 22:59:20 -070079 }
Romain Guy5cbbce52010-06-27 22:59:20 -070080 }
Romain Guy260e1022010-07-12 14:41:06 -070081
Romain Guy67f27952010-12-07 20:09:23 -080082 if (mInitialized) {
Romain Guy67f27952010-12-07 20:09:23 -080083 transform = addUniform("transform");
84 }
Romain Guy5cbbce52010-06-27 22:59:20 -070085}
86
87Program::~Program() {
Romain Guy67f27952010-12-07 20:09:23 -080088 if (mInitialized) {
Romain Guy3e263fa2011-12-12 16:47:48 -080089 glDetachShader(mProgramId, mVertexShader);
90 glDetachShader(mProgramId, mFragmentShader);
91
92 glDeleteShader(mVertexShader);
93 glDeleteShader(mFragmentShader);
94
Romain Guy05bbde72011-12-09 12:55:37 -080095 glDeleteProgram(mProgramId);
Romain Guy67f27952010-12-07 20:09:23 -080096 }
Romain Guy5cbbce52010-06-27 22:59:20 -070097}
98
Romain Guy5cbbce52010-06-27 22:59:20 -070099int Program::addAttrib(const char* name) {
Romain Guy05bbde72011-12-09 12:55:37 -0800100 int slot = glGetAttribLocation(mProgramId, name);
101 mAttributes.add(name, slot);
Romain Guy5cbbce52010-06-27 22:59:20 -0700102 return slot;
103}
104
Romain Guy3e263fa2011-12-12 16:47:48 -0800105int Program::bindAttrib(const char* name, ShaderBindings bindingSlot) {
106 glBindAttribLocation(mProgramId, bindingSlot, name);
Romain Guy3e263fa2011-12-12 16:47:48 -0800107 mAttributes.add(name, bindingSlot);
108 return bindingSlot;
109}
110
Romain Guy5cbbce52010-06-27 22:59:20 -0700111int Program::getAttrib(const char* name) {
Romain Guy05bbde72011-12-09 12:55:37 -0800112 ssize_t index = mAttributes.indexOfKey(name);
Romain Guy889f8d12010-07-29 14:37:42 -0700113 if (index >= 0) {
Romain Guy05bbde72011-12-09 12:55:37 -0800114 return mAttributes.valueAt(index);
Romain Guy889f8d12010-07-29 14:37:42 -0700115 }
116 return addAttrib(name);
Romain Guy5cbbce52010-06-27 22:59:20 -0700117}
118
119int Program::addUniform(const char* name) {
Romain Guy05bbde72011-12-09 12:55:37 -0800120 int slot = glGetUniformLocation(mProgramId, name);
121 mUniforms.add(name, slot);
Romain Guy5cbbce52010-06-27 22:59:20 -0700122 return slot;
123}
124
125int Program::getUniform(const char* name) {
Romain Guy05bbde72011-12-09 12:55:37 -0800126 ssize_t index = mUniforms.indexOfKey(name);
Romain Guy889f8d12010-07-29 14:37:42 -0700127 if (index >= 0) {
Romain Guy05bbde72011-12-09 12:55:37 -0800128 return mUniforms.valueAt(index);
Romain Guy889f8d12010-07-29 14:37:42 -0700129 }
130 return addUniform(name);
Romain Guy5cbbce52010-06-27 22:59:20 -0700131}
132
133GLuint Program::buildShader(const char* source, GLenum type) {
134 GLuint shader = glCreateShader(type);
135 glShaderSource(shader, 1, &source, 0);
136 glCompileShader(shader);
137
138 GLint status;
139 glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
140 if (status != GL_TRUE) {
141 // Some drivers return wrong values for GL_INFO_LOG_LENGTH
142 // use a fixed size instead
143 GLchar log[512];
144 glGetShaderInfoLog(shader, sizeof(log), 0, &log[0]);
145 LOGE("Error while compiling shader: %s", log);
146 glDeleteShader(shader);
Romain Guy67f27952010-12-07 20:09:23 -0800147 return 0;
Romain Guy5cbbce52010-06-27 22:59:20 -0700148 }
149
150 return shader;
151}
152
Romain Guy889f8d12010-07-29 14:37:42 -0700153void Program::set(const mat4& projectionMatrix, const mat4& modelViewMatrix,
Chet Haase8a5cc922011-04-26 07:28:09 -0700154 const mat4& transformMatrix, bool offset) {
Romain Guy0b9db912010-07-09 18:53:25 -0700155 mat4 t(projectionMatrix);
Chet Haase8a5cc922011-04-26 07:28:09 -0700156 if (offset) {
Romain Guy24edca82011-12-09 13:08:06 -0800157 // offset screenspace xy by an amount that compensates for typical precision
158 // issues in GPU hardware that tends to paint hor/vert lines in pixels shifted
159 // up and to the left.
160 // This offset value is based on an assumption that some hardware may use as
161 // little as 12.4 precision, so we offset by slightly more than 1/16.
Chet Haase8a5cc922011-04-26 07:28:09 -0700162 t.translate(.375, .375, 0);
163 }
Romain Guy0b9db912010-07-09 18:53:25 -0700164 t.multiply(transformMatrix);
165 t.multiply(modelViewMatrix);
166
Romain Guy0b9db912010-07-09 18:53:25 -0700167 glUniformMatrix4fv(transform, 1, GL_FALSE, &t.data[0]);
Romain Guy5cbbce52010-06-27 22:59:20 -0700168}
169
Romain Guy707b2f72010-10-11 16:34:59 -0700170void Program::setColor(const float r, const float g, const float b, const float a) {
Romain Guy05bbde72011-12-09 12:55:37 -0800171 if (!mHasColorUniform) {
172 mColorUniform = getUniform("color");
Romain Guy6752d0a2011-12-12 12:15:17 -0800173 mHasColorUniform = true;
Romain Guy05bbde72011-12-09 12:55:37 -0800174 }
175 glUniform4f(mColorUniform, r, g, b, a);
Romain Guy707b2f72010-10-11 16:34:59 -0700176}
177
Romain Guy889f8d12010-07-29 14:37:42 -0700178void Program::use() {
Romain Guy05bbde72011-12-09 12:55:37 -0800179 glUseProgram(mProgramId);
Romain Guy2d4fd362011-12-13 22:00:19 -0800180 if (texCoords >= 0 && !mHasSampler) {
181 glUniform1i(getUniform("sampler"), 0);
182 mHasSampler = true;
183 }
Romain Guy889f8d12010-07-29 14:37:42 -0700184 mUse = true;
Romain Guy6926c722010-07-12 20:20:03 -0700185}
186
Romain Guy889f8d12010-07-29 14:37:42 -0700187void Program::remove() {
188 mUse = false;
Romain Guyf9764a42010-07-16 23:13:33 -0700189}
190
Romain Guy5cbbce52010-06-27 22:59:20 -0700191}; // namespace uirenderer
192}; // namespace android