daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 1 | // |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2 | // Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved. |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 3 | // Use of this source code is governed by a BSD-style license that can be |
| 4 | // found in the LICENSE file. |
| 5 | // |
| 6 | |
| 7 | // Program.cpp: Implements the gl::Program class. Implements GL program objects |
| 8 | // and related functionality. [OpenGL ES 2.0.24] section 2.10.3 page 28. |
| 9 | |
Geoff Lang | 2b5420c | 2014-11-19 14:20:15 -0500 | [diff] [blame] | 10 | #include "libANGLE/Program.h" |
Jamie Madill | 437d266 | 2014-12-05 14:23:35 -0500 | [diff] [blame] | 11 | |
Jamie Madill | 9e0478f | 2015-01-13 11:13:54 -0500 | [diff] [blame] | 12 | #include <algorithm> |
| 13 | |
Jamie Madill | 20e005b | 2017-04-07 14:19:22 -0400 | [diff] [blame] | 14 | #include "common/bitset_utils.h" |
Jamie Madill | 9e0478f | 2015-01-13 11:13:54 -0500 | [diff] [blame] | 15 | #include "common/debug.h" |
| 16 | #include "common/platform.h" |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 17 | #include "common/string_utils.h" |
Jamie Madill | 9e0478f | 2015-01-13 11:13:54 -0500 | [diff] [blame] | 18 | #include "common/utilities.h" |
Jamie Madill | 9e0478f | 2015-01-13 11:13:54 -0500 | [diff] [blame] | 19 | #include "compiler/translator/blocklayout.h" |
Jamie Madill | a2c7498 | 2016-12-12 11:20:42 -0500 | [diff] [blame] | 20 | #include "libANGLE/Context.h" |
Jamie Madill | 4f86d05 | 2017-06-05 12:59:26 -0400 | [diff] [blame] | 21 | #include "libANGLE/MemoryProgramCache.h" |
Jamie Madill | 7af0de5 | 2017-11-06 17:09:33 -0500 | [diff] [blame] | 22 | #include "libANGLE/ProgramLinkedResources.h" |
Jamie Madill | 437d266 | 2014-12-05 14:23:35 -0500 | [diff] [blame] | 23 | #include "libANGLE/ResourceManager.h" |
Jamie Madill | 53ea9cc | 2016-05-17 10:12:52 -0400 | [diff] [blame] | 24 | #include "libANGLE/Uniform.h" |
Jamie Madill | 4f86d05 | 2017-06-05 12:59:26 -0400 | [diff] [blame] | 25 | #include "libANGLE/VaryingPacking.h" |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 26 | #include "libANGLE/Version.h" |
Jamie Madill | 4f86d05 | 2017-06-05 12:59:26 -0400 | [diff] [blame] | 27 | #include "libANGLE/features.h" |
Jamie Madill | 6c58b06 | 2017-08-01 13:44:25 -0400 | [diff] [blame] | 28 | #include "libANGLE/histogram_macros.h" |
Jamie Madill | 4f86d05 | 2017-06-05 12:59:26 -0400 | [diff] [blame] | 29 | #include "libANGLE/queryconversions.h" |
| 30 | #include "libANGLE/renderer/GLImplFactory.h" |
| 31 | #include "libANGLE/renderer/ProgramImpl.h" |
Jamie Madill | 6c58b06 | 2017-08-01 13:44:25 -0400 | [diff] [blame] | 32 | #include "platform/Platform.h" |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 33 | |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 34 | namespace gl |
| 35 | { |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 36 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 37 | namespace |
| 38 | { |
| 39 | |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 40 | // This simplified cast function doesn't need to worry about advanced concepts like |
| 41 | // depth range values, or casting to bool. |
| 42 | template <typename DestT, typename SrcT> |
| 43 | DestT UniformStateQueryCast(SrcT value); |
| 44 | |
| 45 | // From-Float-To-Integer Casts |
| 46 | template <> |
| 47 | GLint UniformStateQueryCast(GLfloat value) |
| 48 | { |
| 49 | return clampCast<GLint>(roundf(value)); |
| 50 | } |
| 51 | |
| 52 | template <> |
| 53 | GLuint UniformStateQueryCast(GLfloat value) |
| 54 | { |
| 55 | return clampCast<GLuint>(roundf(value)); |
| 56 | } |
| 57 | |
| 58 | // From-Integer-to-Integer Casts |
| 59 | template <> |
| 60 | GLint UniformStateQueryCast(GLuint value) |
| 61 | { |
| 62 | return clampCast<GLint>(value); |
| 63 | } |
| 64 | |
| 65 | template <> |
| 66 | GLuint UniformStateQueryCast(GLint value) |
| 67 | { |
| 68 | return clampCast<GLuint>(value); |
| 69 | } |
| 70 | |
| 71 | // From-Boolean-to-Anything Casts |
| 72 | template <> |
| 73 | GLfloat UniformStateQueryCast(GLboolean value) |
| 74 | { |
Geoff Lang | 9201943 | 2017-11-20 13:09:34 -0500 | [diff] [blame] | 75 | return (ConvertToBool(value) ? 1.0f : 0.0f); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | template <> |
| 79 | GLint UniformStateQueryCast(GLboolean value) |
| 80 | { |
Geoff Lang | 9201943 | 2017-11-20 13:09:34 -0500 | [diff] [blame] | 81 | return (ConvertToBool(value) ? 1 : 0); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | template <> |
| 85 | GLuint UniformStateQueryCast(GLboolean value) |
| 86 | { |
Geoff Lang | 9201943 | 2017-11-20 13:09:34 -0500 | [diff] [blame] | 87 | return (ConvertToBool(value) ? 1u : 0u); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | // Default to static_cast |
| 91 | template <typename DestT, typename SrcT> |
| 92 | DestT UniformStateQueryCast(SrcT value) |
| 93 | { |
| 94 | return static_cast<DestT>(value); |
| 95 | } |
| 96 | |
| 97 | template <typename SrcT, typename DestT> |
| 98 | void UniformStateQueryCastLoop(DestT *dataOut, const uint8_t *srcPointer, int components) |
| 99 | { |
| 100 | for (int comp = 0; comp < components; ++comp) |
| 101 | { |
| 102 | // We only work with strides of 4 bytes for uniform components. (GLfloat/GLint) |
| 103 | // Don't use SrcT stride directly since GLboolean has a stride of 1 byte. |
| 104 | size_t offset = comp * 4; |
| 105 | const SrcT *typedSrcPointer = reinterpret_cast<const SrcT *>(&srcPointer[offset]); |
| 106 | dataOut[comp] = UniformStateQueryCast<DestT>(*typedSrcPointer); |
| 107 | } |
| 108 | } |
| 109 | |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 110 | template <typename VarT> |
| 111 | GLuint GetResourceIndexFromName(const std::vector<VarT> &list, const std::string &name) |
| 112 | { |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 113 | std::string nameAsArrayName = name + "[0]"; |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 114 | for (size_t index = 0; index < list.size(); index++) |
| 115 | { |
| 116 | const VarT &resource = list[index]; |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 117 | if (resource.name == name || (resource.isArray() && resource.name == nameAsArrayName)) |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 118 | { |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 119 | return static_cast<GLuint>(index); |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 120 | } |
| 121 | } |
| 122 | |
| 123 | return GL_INVALID_INDEX; |
| 124 | } |
| 125 | |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 126 | template <typename VarT> |
| 127 | GLint GetVariableLocation(const std::vector<VarT> &list, |
| 128 | const std::vector<VariableLocation> &locationList, |
| 129 | const std::string &name) |
| 130 | { |
| 131 | size_t nameLengthWithoutArrayIndex; |
| 132 | unsigned int arrayIndex = ParseArrayIndex(name, &nameLengthWithoutArrayIndex); |
| 133 | |
| 134 | for (size_t location = 0u; location < locationList.size(); ++location) |
| 135 | { |
| 136 | const VariableLocation &variableLocation = locationList[location]; |
| 137 | if (!variableLocation.used()) |
| 138 | { |
| 139 | continue; |
| 140 | } |
| 141 | |
| 142 | const VarT &variable = list[variableLocation.index]; |
| 143 | |
| 144 | if (angle::BeginsWith(variable.name, name)) |
| 145 | { |
| 146 | if (name.length() == variable.name.length()) |
| 147 | { |
| 148 | ASSERT(name == variable.name); |
| 149 | // GLES 3.1 November 2016 page 87. |
| 150 | // The string exactly matches the name of the active variable. |
| 151 | return static_cast<GLint>(location); |
| 152 | } |
| 153 | if (name.length() + 3u == variable.name.length() && variable.isArray()) |
| 154 | { |
| 155 | ASSERT(name + "[0]" == variable.name); |
| 156 | // The string identifies the base name of an active array, where the string would |
| 157 | // exactly match the name of the variable if the suffix "[0]" were appended to the |
| 158 | // string. |
| 159 | return static_cast<GLint>(location); |
| 160 | } |
| 161 | } |
Olli Etuaho | 1734e17 | 2017-10-27 15:30:27 +0300 | [diff] [blame] | 162 | if (variable.isArray() && variableLocation.arrayIndex == arrayIndex && |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 163 | nameLengthWithoutArrayIndex + 3u == variable.name.length() && |
| 164 | angle::BeginsWith(variable.name, name, nameLengthWithoutArrayIndex)) |
| 165 | { |
| 166 | ASSERT(name.substr(0u, nameLengthWithoutArrayIndex) + "[0]" == variable.name); |
| 167 | // The string identifies an active element of the array, where the string ends with the |
| 168 | // concatenation of the "[" character, an integer (with no "+" sign, extra leading |
| 169 | // zeroes, or whitespace) identifying an array element, and the "]" character, the |
| 170 | // integer is less than the number of active elements of the array variable, and where |
| 171 | // the string would exactly match the enumerated name of the array if the decimal |
| 172 | // integer were replaced with zero. |
| 173 | return static_cast<GLint>(location); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | return -1; |
| 178 | } |
| 179 | |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 180 | void CopyStringToBuffer(GLchar *buffer, const std::string &string, GLsizei bufSize, GLsizei *length) |
| 181 | { |
| 182 | ASSERT(bufSize > 0); |
| 183 | strncpy(buffer, string.c_str(), bufSize); |
| 184 | buffer[bufSize - 1] = '\0'; |
| 185 | |
| 186 | if (length) |
| 187 | { |
| 188 | *length = static_cast<GLsizei>(strlen(buffer)); |
| 189 | } |
| 190 | } |
| 191 | |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 192 | bool IncludeSameArrayElement(const std::set<std::string> &nameSet, const std::string &name) |
| 193 | { |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 194 | std::vector<unsigned int> subscripts; |
| 195 | std::string baseName = ParseResourceName(name, &subscripts); |
| 196 | for (auto nameInSet : nameSet) |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 197 | { |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 198 | std::vector<unsigned int> arrayIndices; |
| 199 | std::string arrayName = ParseResourceName(nameInSet, &arrayIndices); |
| 200 | if (baseName == arrayName && |
| 201 | (subscripts.empty() || arrayIndices.empty() || subscripts == arrayIndices)) |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 202 | { |
| 203 | return true; |
| 204 | } |
| 205 | } |
| 206 | return false; |
| 207 | } |
| 208 | |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 209 | std::string GetInterfaceBlockLimitName(ShaderType shaderType, sh::BlockType blockType) |
| 210 | { |
| 211 | std::ostringstream stream; |
| 212 | stream << "GL_MAX_" << GetShaderTypeString(shaderType) << "_"; |
| 213 | |
| 214 | switch (blockType) |
| 215 | { |
| 216 | case sh::BlockType::BLOCK_UNIFORM: |
| 217 | stream << "UNIFORM_BUFFERS"; |
| 218 | break; |
| 219 | case sh::BlockType::BLOCK_BUFFER: |
| 220 | stream << "SHADER_STORAGE_BLOCKS"; |
| 221 | break; |
| 222 | default: |
| 223 | UNREACHABLE(); |
| 224 | return ""; |
| 225 | } |
| 226 | |
| 227 | if (shaderType == ShaderType::Geometry) |
| 228 | { |
| 229 | stream << "_EXT"; |
| 230 | } |
| 231 | |
| 232 | return stream.str(); |
| 233 | } |
| 234 | |
| 235 | const char *GetInterfaceBlockTypeString(sh::BlockType blockType) |
| 236 | { |
| 237 | switch (blockType) |
| 238 | { |
| 239 | case sh::BlockType::BLOCK_UNIFORM: |
| 240 | return "uniform block"; |
| 241 | case sh::BlockType::BLOCK_BUFFER: |
| 242 | return "shader storage block"; |
| 243 | default: |
| 244 | UNREACHABLE(); |
| 245 | return ""; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | void LogInterfaceBlocksExceedLimit(InfoLog &infoLog, |
| 250 | ShaderType shaderType, |
| 251 | sh::BlockType blockType, |
| 252 | GLuint limit) |
| 253 | { |
| 254 | infoLog << GetShaderTypeString(shaderType) << " shader " |
| 255 | << GetInterfaceBlockTypeString(blockType) << " count exceeds " |
| 256 | << GetInterfaceBlockLimitName(shaderType, blockType) << " (" << limit << ")"; |
| 257 | } |
| 258 | |
Jiawei Shao | 427071e | 2018-03-19 09:21:37 +0800 | [diff] [blame] | 259 | bool ValidateInterfaceBlocksCount(GLuint maxInterfaceBlocks, |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 260 | const std::vector<sh::InterfaceBlock> &interfaceBlocks, |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 261 | ShaderType shaderType, |
| 262 | sh::BlockType blockType, |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 263 | GLuint *combinedInterfaceBlocksCount, |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 264 | InfoLog &infoLog) |
| 265 | { |
| 266 | GLuint blockCount = 0; |
| 267 | for (const sh::InterfaceBlock &block : interfaceBlocks) |
| 268 | { |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 269 | if (IsActiveInterfaceBlock(block)) |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 270 | { |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 271 | blockCount += std::max(block.arraySize, 1u); |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 272 | if (blockCount > maxInterfaceBlocks) |
| 273 | { |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 274 | LogInterfaceBlocksExceedLimit(infoLog, shaderType, blockType, maxInterfaceBlocks); |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 275 | return false; |
| 276 | } |
| 277 | } |
| 278 | } |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 279 | |
| 280 | // [OpenGL ES 3.1] Chapter 7.6.2 Page 105: |
| 281 | // If a uniform block is used by multiple shader stages, each such use counts separately |
| 282 | // against this combined limit. |
| 283 | // [OpenGL ES 3.1] Chapter 7.8 Page 111: |
| 284 | // If a shader storage block in a program is referenced by multiple shaders, each such |
| 285 | // reference counts separately against this combined limit. |
| 286 | if (combinedInterfaceBlocksCount) |
| 287 | { |
| 288 | *combinedInterfaceBlocksCount += blockCount; |
| 289 | } |
| 290 | |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 291 | return true; |
| 292 | } |
| 293 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 294 | GLuint GetInterfaceBlockIndex(const std::vector<InterfaceBlock> &list, const std::string &name) |
| 295 | { |
| 296 | std::vector<unsigned int> subscripts; |
| 297 | std::string baseName = ParseResourceName(name, &subscripts); |
| 298 | |
| 299 | unsigned int numBlocks = static_cast<unsigned int>(list.size()); |
| 300 | for (unsigned int blockIndex = 0; blockIndex < numBlocks; blockIndex++) |
| 301 | { |
| 302 | const auto &block = list[blockIndex]; |
| 303 | if (block.name == baseName) |
| 304 | { |
| 305 | const bool arrayElementZero = |
| 306 | (subscripts.empty() && (!block.isArray || block.arrayElement == 0)); |
| 307 | const bool arrayElementMatches = |
| 308 | (subscripts.size() == 1 && subscripts[0] == block.arrayElement); |
| 309 | if (arrayElementMatches || arrayElementZero) |
| 310 | { |
| 311 | return blockIndex; |
| 312 | } |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | return GL_INVALID_INDEX; |
| 317 | } |
| 318 | |
| 319 | void GetInterfaceBlockName(const GLuint index, |
| 320 | const std::vector<InterfaceBlock> &list, |
| 321 | GLsizei bufSize, |
| 322 | GLsizei *length, |
| 323 | GLchar *name) |
| 324 | { |
| 325 | ASSERT(index < list.size()); |
| 326 | |
| 327 | const auto &block = list[index]; |
| 328 | |
| 329 | if (bufSize > 0) |
| 330 | { |
| 331 | std::string blockName = block.name; |
| 332 | |
| 333 | if (block.isArray) |
| 334 | { |
| 335 | blockName += ArrayString(block.arrayElement); |
| 336 | } |
| 337 | CopyStringToBuffer(name, blockName, bufSize, length); |
| 338 | } |
| 339 | } |
| 340 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 341 | void InitUniformBlockLinker(const ProgramState &state, UniformBlockLinker *blockLinker) |
Jamie Madill | c9727f3 | 2017-11-07 12:37:07 -0500 | [diff] [blame] | 342 | { |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 343 | for (ShaderType shaderType : AllShaderTypes()) |
Jamie Madill | c9727f3 | 2017-11-07 12:37:07 -0500 | [diff] [blame] | 344 | { |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 345 | Shader *shader = state.getAttachedShader(shaderType); |
| 346 | if (shader) |
| 347 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 348 | blockLinker->addShaderBlocks(shaderType, &shader->getUniformBlocks()); |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 349 | } |
Jamie Madill | c9727f3 | 2017-11-07 12:37:07 -0500 | [diff] [blame] | 350 | } |
| 351 | } |
| 352 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 353 | void InitShaderStorageBlockLinker(const ProgramState &state, ShaderStorageBlockLinker *blockLinker) |
Jamie Madill | c9727f3 | 2017-11-07 12:37:07 -0500 | [diff] [blame] | 354 | { |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 355 | for (ShaderType shaderType : AllShaderTypes()) |
Jamie Madill | c9727f3 | 2017-11-07 12:37:07 -0500 | [diff] [blame] | 356 | { |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 357 | Shader *shader = state.getAttachedShader(shaderType); |
| 358 | if (shader != nullptr) |
| 359 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 360 | blockLinker->addShaderBlocks(shaderType, &shader->getShaderStorageBlocks()); |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 361 | } |
Jamie Madill | c9727f3 | 2017-11-07 12:37:07 -0500 | [diff] [blame] | 362 | } |
| 363 | } |
| 364 | |
jchen10 | 8225e73 | 2017-11-14 16:29:03 +0800 | [diff] [blame] | 365 | // Find the matching varying or field by name. |
| 366 | const sh::ShaderVariable *FindVaryingOrField(const ProgramMergedVaryings &varyings, |
| 367 | const std::string &name) |
| 368 | { |
| 369 | const sh::ShaderVariable *var = nullptr; |
| 370 | for (const auto &ref : varyings) |
| 371 | { |
| 372 | const sh::Varying *varying = ref.second.get(); |
| 373 | if (varying->name == name) |
| 374 | { |
| 375 | var = varying; |
| 376 | break; |
| 377 | } |
| 378 | var = FindShaderVarField(*varying, name); |
| 379 | if (var != nullptr) |
| 380 | { |
| 381 | break; |
| 382 | } |
| 383 | } |
| 384 | return var; |
| 385 | } |
| 386 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 387 | void AddParentPrefix(const std::string &parentName, std::string *mismatchedFieldName) |
| 388 | { |
| 389 | ASSERT(mismatchedFieldName); |
| 390 | if (mismatchedFieldName->empty()) |
| 391 | { |
| 392 | *mismatchedFieldName = parentName; |
| 393 | } |
| 394 | else |
| 395 | { |
| 396 | std::ostringstream stream; |
| 397 | stream << parentName << "." << *mismatchedFieldName; |
| 398 | *mismatchedFieldName = stream.str(); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | const char *GetLinkMismatchErrorString(LinkMismatchError linkError) |
| 403 | { |
| 404 | switch (linkError) |
| 405 | { |
| 406 | case LinkMismatchError::TYPE_MISMATCH: |
| 407 | return "Type"; |
| 408 | case LinkMismatchError::ARRAY_SIZE_MISMATCH: |
| 409 | return "Array size"; |
| 410 | case LinkMismatchError::PRECISION_MISMATCH: |
| 411 | return "Precision"; |
| 412 | case LinkMismatchError::STRUCT_NAME_MISMATCH: |
| 413 | return "Structure name"; |
| 414 | case LinkMismatchError::FIELD_NUMBER_MISMATCH: |
| 415 | return "Field number"; |
| 416 | case LinkMismatchError::FIELD_NAME_MISMATCH: |
| 417 | return "Field name"; |
| 418 | |
| 419 | case LinkMismatchError::INTERPOLATION_TYPE_MISMATCH: |
| 420 | return "Interpolation type"; |
| 421 | case LinkMismatchError::INVARIANCE_MISMATCH: |
| 422 | return "Invariance"; |
| 423 | |
| 424 | case LinkMismatchError::BINDING_MISMATCH: |
| 425 | return "Binding layout qualifier"; |
| 426 | case LinkMismatchError::LOCATION_MISMATCH: |
| 427 | return "Location layout qualifier"; |
| 428 | case LinkMismatchError::OFFSET_MISMATCH: |
| 429 | return "Offset layout qualilfier"; |
| 430 | |
| 431 | case LinkMismatchError::LAYOUT_QUALIFIER_MISMATCH: |
| 432 | return "Layout qualifier"; |
| 433 | case LinkMismatchError::MATRIX_PACKING_MISMATCH: |
| 434 | return "Matrix Packing"; |
| 435 | default: |
| 436 | UNREACHABLE(); |
| 437 | return ""; |
| 438 | } |
| 439 | } |
| 440 | |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 441 | LinkMismatchError LinkValidateInterfaceBlockFields(const sh::InterfaceBlockField &blockField1, |
| 442 | const sh::InterfaceBlockField &blockField2, |
| 443 | bool webglCompatibility, |
| 444 | std::string *mismatchedBlockFieldName) |
| 445 | { |
| 446 | if (blockField1.name != blockField2.name) |
| 447 | { |
| 448 | return LinkMismatchError::FIELD_NAME_MISMATCH; |
| 449 | } |
| 450 | |
| 451 | // If webgl, validate precision of UBO fields, otherwise don't. See Khronos bug 10287. |
| 452 | LinkMismatchError linkError = Program::LinkValidateVariablesBase( |
| 453 | blockField1, blockField2, webglCompatibility, true, mismatchedBlockFieldName); |
| 454 | if (linkError != LinkMismatchError::NO_MISMATCH) |
| 455 | { |
| 456 | AddParentPrefix(blockField1.name, mismatchedBlockFieldName); |
| 457 | return linkError; |
| 458 | } |
| 459 | |
| 460 | if (blockField1.isRowMajorLayout != blockField2.isRowMajorLayout) |
| 461 | { |
| 462 | AddParentPrefix(blockField1.name, mismatchedBlockFieldName); |
| 463 | return LinkMismatchError::MATRIX_PACKING_MISMATCH; |
| 464 | } |
| 465 | |
| 466 | return LinkMismatchError::NO_MISMATCH; |
| 467 | } |
| 468 | |
| 469 | LinkMismatchError AreMatchingInterfaceBlocks(const sh::InterfaceBlock &interfaceBlock1, |
| 470 | const sh::InterfaceBlock &interfaceBlock2, |
| 471 | bool webglCompatibility, |
| 472 | std::string *mismatchedBlockFieldName) |
| 473 | { |
| 474 | // validate blocks for the same member types |
| 475 | if (interfaceBlock1.fields.size() != interfaceBlock2.fields.size()) |
| 476 | { |
| 477 | return LinkMismatchError::FIELD_NUMBER_MISMATCH; |
| 478 | } |
| 479 | if (interfaceBlock1.arraySize != interfaceBlock2.arraySize) |
| 480 | { |
| 481 | return LinkMismatchError::ARRAY_SIZE_MISMATCH; |
| 482 | } |
| 483 | if (interfaceBlock1.layout != interfaceBlock2.layout || |
| 484 | interfaceBlock1.binding != interfaceBlock2.binding) |
| 485 | { |
| 486 | return LinkMismatchError::LAYOUT_QUALIFIER_MISMATCH; |
| 487 | } |
| 488 | const unsigned int numBlockMembers = static_cast<unsigned int>(interfaceBlock1.fields.size()); |
| 489 | for (unsigned int blockMemberIndex = 0; blockMemberIndex < numBlockMembers; blockMemberIndex++) |
| 490 | { |
| 491 | const sh::InterfaceBlockField &member1 = interfaceBlock1.fields[blockMemberIndex]; |
| 492 | const sh::InterfaceBlockField &member2 = interfaceBlock2.fields[blockMemberIndex]; |
| 493 | |
| 494 | LinkMismatchError linkError = LinkValidateInterfaceBlockFields( |
| 495 | member1, member2, webglCompatibility, mismatchedBlockFieldName); |
| 496 | if (linkError != LinkMismatchError::NO_MISMATCH) |
| 497 | { |
| 498 | return linkError; |
| 499 | } |
| 500 | } |
| 501 | return LinkMismatchError::NO_MISMATCH; |
| 502 | } |
| 503 | |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 504 | using ShaderInterfaceBlock = std::pair<ShaderType, const sh::InterfaceBlock *>; |
| 505 | using InterfaceBlockMap = std::map<std::string, ShaderInterfaceBlock>; |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 506 | |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 507 | void InitializeInterfaceBlockMap(const std::vector<sh::InterfaceBlock> &interfaceBlocks, |
| 508 | ShaderType shaderType, |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 509 | InterfaceBlockMap *linkedInterfaceBlocks) |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 510 | { |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 511 | ASSERT(linkedInterfaceBlocks); |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 512 | |
| 513 | for (const sh::InterfaceBlock &interfaceBlock : interfaceBlocks) |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 514 | { |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 515 | (*linkedInterfaceBlocks)[interfaceBlock.name] = std::make_pair(shaderType, &interfaceBlock); |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 516 | } |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 517 | } |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 518 | |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 519 | bool ValidateGraphicsInterfaceBlocksPerShader( |
| 520 | const std::vector<sh::InterfaceBlock> &interfaceBlocksToLink, |
| 521 | ShaderType shaderType, |
| 522 | bool webglCompatibility, |
| 523 | InterfaceBlockMap *linkedBlocks, |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 524 | InfoLog &infoLog) |
| 525 | { |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 526 | ASSERT(linkedBlocks); |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 527 | |
| 528 | for (const sh::InterfaceBlock &block : interfaceBlocksToLink) |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 529 | { |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 530 | const auto &entry = linkedBlocks->find(block.name); |
| 531 | if (entry != linkedBlocks->end()) |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 532 | { |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 533 | const sh::InterfaceBlock &linkedBlock = *(entry->second.second); |
| 534 | std::string mismatchedStructFieldName; |
| 535 | LinkMismatchError linkError = AreMatchingInterfaceBlocks( |
| 536 | block, linkedBlock, webglCompatibility, &mismatchedStructFieldName); |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 537 | if (linkError != LinkMismatchError::NO_MISMATCH) |
| 538 | { |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 539 | LogLinkMismatch(infoLog, block.name, GetInterfaceBlockTypeString(block.blockType), |
| 540 | linkError, mismatchedStructFieldName, entry->second.first, |
| 541 | shaderType); |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 542 | return false; |
| 543 | } |
| 544 | } |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 545 | else |
| 546 | { |
| 547 | (*linkedBlocks)[block.name] = std::make_pair(shaderType, &block); |
| 548 | } |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | return true; |
| 552 | } |
| 553 | |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 554 | bool ValidateInterfaceBlocksMatch( |
| 555 | GLuint numShadersHasInterfaceBlocks, |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 556 | const ShaderMap<const std::vector<sh::InterfaceBlock> *> &shaderInterfaceBlocks, |
| 557 | InfoLog &infoLog, |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 558 | bool webglCompatibility) |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 559 | { |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 560 | if (numShadersHasInterfaceBlocks < 2u) |
| 561 | { |
| 562 | return true; |
| 563 | } |
| 564 | |
| 565 | ASSERT(!shaderInterfaceBlocks[ShaderType::Compute]); |
| 566 | |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 567 | // Check that interface blocks defined in the graphics shaders are identical |
| 568 | |
| 569 | InterfaceBlockMap linkedInterfaceBlocks; |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 570 | |
| 571 | bool interfaceBlockMapInitialized = false; |
| 572 | for (ShaderType shaderType : kAllGraphicsShaderTypes) |
| 573 | { |
| 574 | if (!shaderInterfaceBlocks[shaderType]) |
| 575 | { |
| 576 | continue; |
| 577 | } |
| 578 | |
| 579 | if (!interfaceBlockMapInitialized) |
| 580 | { |
| 581 | InitializeInterfaceBlockMap(*shaderInterfaceBlocks[shaderType], shaderType, |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 582 | &linkedInterfaceBlocks); |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 583 | interfaceBlockMapInitialized = true; |
| 584 | } |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 585 | else if (!ValidateGraphicsInterfaceBlocksPerShader(*shaderInterfaceBlocks[shaderType], |
| 586 | shaderType, webglCompatibility, |
| 587 | &linkedInterfaceBlocks, infoLog)) |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 588 | { |
| 589 | return false; |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 590 | } |
| 591 | } |
| 592 | |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 593 | return true; |
| 594 | } |
| 595 | |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 596 | } // anonymous namespace |
| 597 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 598 | // Saves the linking context for later use in resolveLink(). |
| 599 | struct Program::LinkingState |
| 600 | { |
| 601 | const Context *context; |
| 602 | std::unique_ptr<ProgramLinkedResources> resources; |
Shahbaz Youssefi | 9137ade | 2018-08-27 14:22:37 -0400 | [diff] [blame] | 603 | egl::BlobCache::Key programHash; |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 604 | std::unique_ptr<rx::LinkEvent> linkEvent; |
| 605 | }; |
| 606 | |
Jamie Madill | 4a3c234 | 2015-10-08 12:58:45 -0400 | [diff] [blame] | 607 | const char *const g_fakepath = "C:\\fakepath"; |
| 608 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 609 | // InfoLog implementation. |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 610 | InfoLog::InfoLog() {} |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 611 | |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 612 | InfoLog::~InfoLog() {} |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 613 | |
Jamie Madill | 71c3b2c | 2015-05-07 11:49:20 -0400 | [diff] [blame] | 614 | size_t InfoLog::getLength() const |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 615 | { |
Jamie Madill | 23176ce | 2017-07-31 14:14:33 -0400 | [diff] [blame] | 616 | if (!mLazyStream) |
| 617 | { |
| 618 | return 0; |
| 619 | } |
| 620 | |
| 621 | const std::string &logString = mLazyStream->str(); |
Jamie Madill | 71c3b2c | 2015-05-07 11:49:20 -0400 | [diff] [blame] | 622 | return logString.empty() ? 0 : logString.length() + 1; |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 623 | } |
| 624 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 625 | void InfoLog::getLog(GLsizei bufSize, GLsizei *length, char *infoLog) const |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 626 | { |
Jamie Madill | 71c3b2c | 2015-05-07 11:49:20 -0400 | [diff] [blame] | 627 | size_t index = 0; |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 628 | |
| 629 | if (bufSize > 0) |
| 630 | { |
Jamie Madill | 23176ce | 2017-07-31 14:14:33 -0400 | [diff] [blame] | 631 | const std::string logString(str()); |
Jamie Madill | 71c3b2c | 2015-05-07 11:49:20 -0400 | [diff] [blame] | 632 | |
Jamie Madill | 23176ce | 2017-07-31 14:14:33 -0400 | [diff] [blame] | 633 | if (!logString.empty()) |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 634 | { |
Jamie Madill | 23176ce | 2017-07-31 14:14:33 -0400 | [diff] [blame] | 635 | index = std::min(static_cast<size_t>(bufSize) - 1, logString.length()); |
| 636 | memcpy(infoLog, logString.c_str(), index); |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | infoLog[index] = '\0'; |
| 640 | } |
| 641 | |
| 642 | if (length) |
| 643 | { |
Jamie Madill | 71c3b2c | 2015-05-07 11:49:20 -0400 | [diff] [blame] | 644 | *length = static_cast<GLsizei>(index); |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 645 | } |
| 646 | } |
| 647 | |
| 648 | // append a santized message to the program info log. |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 649 | // The D3D compiler includes a fake file path in some of the warning or error |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 650 | // messages, so lets remove all occurrences of this fake file path from the log. |
| 651 | void InfoLog::appendSanitized(const char *message) |
| 652 | { |
Jamie Madill | 23176ce | 2017-07-31 14:14:33 -0400 | [diff] [blame] | 653 | ensureInitialized(); |
| 654 | |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 655 | std::string msg(message); |
| 656 | |
| 657 | size_t found; |
| 658 | do |
| 659 | { |
| 660 | found = msg.find(g_fakepath); |
| 661 | if (found != std::string::npos) |
| 662 | { |
| 663 | msg.erase(found, strlen(g_fakepath)); |
| 664 | } |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 665 | } while (found != std::string::npos); |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 666 | |
Jamie Madill | 23176ce | 2017-07-31 14:14:33 -0400 | [diff] [blame] | 667 | *mLazyStream << message << std::endl; |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 668 | } |
| 669 | |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 670 | void InfoLog::reset() |
| 671 | { |
Jiawei Shao | 02f1523 | 2017-12-27 10:10:28 +0800 | [diff] [blame] | 672 | if (mLazyStream) |
| 673 | { |
| 674 | mLazyStream.reset(nullptr); |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | bool InfoLog::empty() const |
| 679 | { |
| 680 | if (!mLazyStream) |
| 681 | { |
| 682 | return true; |
| 683 | } |
| 684 | |
| 685 | return mLazyStream->rdbuf()->in_avail() == 0; |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 686 | } |
| 687 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 688 | void LogLinkMismatch(InfoLog &infoLog, |
| 689 | const std::string &variableName, |
| 690 | const char *variableType, |
| 691 | LinkMismatchError linkError, |
| 692 | const std::string &mismatchedStructOrBlockFieldName, |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 693 | ShaderType shaderType1, |
| 694 | ShaderType shaderType2) |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 695 | { |
| 696 | std::ostringstream stream; |
| 697 | stream << GetLinkMismatchErrorString(linkError) << "s of " << variableType << " '" |
| 698 | << variableName; |
| 699 | |
| 700 | if (!mismatchedStructOrBlockFieldName.empty()) |
| 701 | { |
| 702 | stream << "' member '" << variableName << "." << mismatchedStructOrBlockFieldName; |
| 703 | } |
| 704 | |
| 705 | stream << "' differ between " << GetShaderTypeString(shaderType1) << " and " |
| 706 | << GetShaderTypeString(shaderType2) << " shaders."; |
| 707 | |
| 708 | infoLog << stream.str(); |
| 709 | } |
| 710 | |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 711 | bool IsActiveInterfaceBlock(const sh::InterfaceBlock &interfaceBlock) |
| 712 | { |
| 713 | // Only 'packed' blocks are allowed to be considered inactive. |
Olli Etuaho | 107c724 | 2018-03-20 15:45:35 +0200 | [diff] [blame] | 714 | return interfaceBlock.active || interfaceBlock.layout != sh::BLOCKLAYOUT_PACKED; |
Jiawei Shao | 1c08cbb | 2018-03-15 15:11:56 +0800 | [diff] [blame] | 715 | } |
| 716 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 717 | // VariableLocation implementation. |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 718 | VariableLocation::VariableLocation() : arrayIndex(0), index(kUnused), ignored(false) {} |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 719 | |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 720 | VariableLocation::VariableLocation(unsigned int arrayIndex, unsigned int index) |
Olli Etuaho | 1734e17 | 2017-10-27 15:30:27 +0300 | [diff] [blame] | 721 | : arrayIndex(arrayIndex), index(index), ignored(false) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 722 | { |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 723 | ASSERT(arrayIndex != GL_INVALID_INDEX); |
| 724 | } |
| 725 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 726 | // SamplerBindings implementation. |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 727 | SamplerBinding::SamplerBinding(TextureType textureTypeIn, |
| 728 | SamplerFormat formatIn, |
| 729 | size_t elementCount, |
| 730 | bool unreferenced) |
| 731 | : textureType(textureTypeIn), |
| 732 | format(formatIn), |
| 733 | boundTextureUnits(elementCount, 0), |
| 734 | unreferenced(unreferenced) |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 735 | {} |
Jamie Madill | acf2f3a | 2017-11-21 19:22:44 -0500 | [diff] [blame] | 736 | |
| 737 | SamplerBinding::SamplerBinding(const SamplerBinding &other) = default; |
| 738 | |
| 739 | SamplerBinding::~SamplerBinding() = default; |
| 740 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 741 | // ProgramBindings implementation. |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 742 | ProgramBindings::ProgramBindings() {} |
Jamie Madill | acf2f3a | 2017-11-21 19:22:44 -0500 | [diff] [blame] | 743 | |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 744 | ProgramBindings::~ProgramBindings() {} |
Jamie Madill | acf2f3a | 2017-11-21 19:22:44 -0500 | [diff] [blame] | 745 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 746 | void ProgramBindings::bindLocation(GLuint index, const std::string &name) |
Geoff Lang | d860552 | 2016-04-13 10:19:12 -0400 | [diff] [blame] | 747 | { |
| 748 | mBindings[name] = index; |
| 749 | } |
| 750 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 751 | int ProgramBindings::getBinding(const std::string &name) const |
Geoff Lang | d860552 | 2016-04-13 10:19:12 -0400 | [diff] [blame] | 752 | { |
| 753 | auto iter = mBindings.find(name); |
| 754 | return (iter != mBindings.end()) ? iter->second : -1; |
| 755 | } |
| 756 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 757 | ProgramBindings::const_iterator ProgramBindings::begin() const |
Geoff Lang | d860552 | 2016-04-13 10:19:12 -0400 | [diff] [blame] | 758 | { |
| 759 | return mBindings.begin(); |
| 760 | } |
| 761 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 762 | ProgramBindings::const_iterator ProgramBindings::end() const |
Geoff Lang | d860552 | 2016-04-13 10:19:12 -0400 | [diff] [blame] | 763 | { |
| 764 | return mBindings.end(); |
| 765 | } |
| 766 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 767 | // ImageBinding implementation. |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 768 | ImageBinding::ImageBinding(size_t count) : boundImageUnits(count, 0), unreferenced(false) {} |
Qin Jiajia | 47f6dd0 | 2018-08-10 13:36:32 +0800 | [diff] [blame] | 769 | ImageBinding::ImageBinding(GLuint imageUnit, size_t count, bool unreferenced) |
| 770 | : unreferenced(unreferenced) |
Jamie Madill | acf2f3a | 2017-11-21 19:22:44 -0500 | [diff] [blame] | 771 | { |
| 772 | for (size_t index = 0; index < count; ++index) |
| 773 | { |
| 774 | boundImageUnits.push_back(imageUnit + static_cast<GLuint>(index)); |
| 775 | } |
| 776 | } |
| 777 | |
| 778 | ImageBinding::ImageBinding(const ImageBinding &other) = default; |
| 779 | |
| 780 | ImageBinding::~ImageBinding() = default; |
| 781 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 782 | // ProgramState implementation. |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 783 | ProgramState::ProgramState() |
Geoff Lang | 70d0f49 | 2015-12-10 17:45:46 -0500 | [diff] [blame] | 784 | : mLabel(), |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 785 | mAttachedShaders({}), |
Geoff Lang | c562975 | 2015-12-07 16:29:04 -0500 | [diff] [blame] | 786 | mTransformFeedbackBufferMode(GL_INTERLEAVED_ATTRIBS), |
Jamie Madill | bd159f0 | 2017-10-09 19:39:06 -0400 | [diff] [blame] | 787 | mMaxActiveAttribLocation(0), |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 788 | mSamplerUniformRange(0, 0), |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 789 | mImageUniformRange(0, 0), |
| 790 | mAtomicCounterUniformRange(0, 0), |
Martin Radev | 7cf6166 | 2017-07-26 17:10:53 +0300 | [diff] [blame] | 791 | mBinaryRetrieveableHint(false), |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 792 | mNumViews(-1), |
| 793 | // [GL_EXT_geometry_shader] Table 20.22 |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 794 | mGeometryShaderInputPrimitiveType(PrimitiveMode::Triangles), |
| 795 | mGeometryShaderOutputPrimitiveType(PrimitiveMode::TriangleStrip), |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 796 | mGeometryShaderInvocations(1), |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 797 | mGeometryShaderMaxVertices(0), |
Austin Eng | 1bf18ce | 2018-10-19 15:34:02 -0700 | [diff] [blame] | 798 | mDrawIDLocation(-1), |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 799 | mActiveSamplerRefCounts{} |
Jamie Madill | 5c6b7bf | 2015-08-17 12:53:35 -0400 | [diff] [blame] | 800 | { |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 801 | mComputeShaderLocalSize.fill(1); |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 802 | mActiveSamplerTypes.fill(TextureType::InvalidEnum); |
Jamie Madill | 5c6b7bf | 2015-08-17 12:53:35 -0400 | [diff] [blame] | 803 | } |
| 804 | |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 805 | ProgramState::~ProgramState() |
Jamie Madill | 5c6b7bf | 2015-08-17 12:53:35 -0400 | [diff] [blame] | 806 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 807 | ASSERT(!hasAttachedShader()); |
Jamie Madill | 5c6b7bf | 2015-08-17 12:53:35 -0400 | [diff] [blame] | 808 | } |
| 809 | |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 810 | const std::string &ProgramState::getLabel() |
Geoff Lang | 70d0f49 | 2015-12-10 17:45:46 -0500 | [diff] [blame] | 811 | { |
| 812 | return mLabel; |
| 813 | } |
| 814 | |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 815 | Shader *ProgramState::getAttachedShader(ShaderType shaderType) const |
| 816 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 817 | ASSERT(shaderType != ShaderType::InvalidEnum); |
| 818 | return mAttachedShaders[shaderType]; |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 819 | } |
| 820 | |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 821 | GLuint ProgramState::getUniformIndexFromName(const std::string &name) const |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 822 | { |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 823 | return GetResourceIndexFromName(mUniforms, name); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 824 | } |
| 825 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 826 | GLuint ProgramState::getBufferVariableIndexFromName(const std::string &name) const |
| 827 | { |
| 828 | return GetResourceIndexFromName(mBufferVariables, name); |
| 829 | } |
| 830 | |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 831 | GLuint ProgramState::getUniformIndexFromLocation(GLint location) const |
| 832 | { |
| 833 | ASSERT(location >= 0 && static_cast<size_t>(location) < mUniformLocations.size()); |
| 834 | return mUniformLocations[location].index; |
| 835 | } |
| 836 | |
| 837 | Optional<GLuint> ProgramState::getSamplerIndex(GLint location) const |
| 838 | { |
| 839 | GLuint index = getUniformIndexFromLocation(location); |
| 840 | if (!isSamplerUniformIndex(index)) |
| 841 | { |
| 842 | return Optional<GLuint>::Invalid(); |
| 843 | } |
| 844 | |
| 845 | return getSamplerIndexFromUniformIndex(index); |
| 846 | } |
| 847 | |
| 848 | bool ProgramState::isSamplerUniformIndex(GLuint index) const |
| 849 | { |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 850 | return mSamplerUniformRange.contains(index); |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | GLuint ProgramState::getSamplerIndexFromUniformIndex(GLuint uniformIndex) const |
| 854 | { |
| 855 | ASSERT(isSamplerUniformIndex(uniformIndex)); |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 856 | return uniformIndex - mSamplerUniformRange.low(); |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 857 | } |
| 858 | |
Qin Jiajia | 47f6dd0 | 2018-08-10 13:36:32 +0800 | [diff] [blame] | 859 | bool ProgramState::isImageUniformIndex(GLuint index) const |
| 860 | { |
| 861 | return mImageUniformRange.contains(index); |
| 862 | } |
| 863 | |
| 864 | GLuint ProgramState::getImageIndexFromUniformIndex(GLuint uniformIndex) const |
| 865 | { |
| 866 | ASSERT(isImageUniformIndex(uniformIndex)); |
| 867 | return uniformIndex - mImageUniformRange.low(); |
| 868 | } |
| 869 | |
Jamie Madill | 34ca4f5 | 2017-06-13 11:49:39 -0400 | [diff] [blame] | 870 | GLuint ProgramState::getAttributeLocation(const std::string &name) const |
| 871 | { |
| 872 | for (const sh::Attribute &attribute : mAttributes) |
| 873 | { |
| 874 | if (attribute.name == name) |
| 875 | { |
| 876 | return attribute.location; |
| 877 | } |
| 878 | } |
| 879 | |
| 880 | return static_cast<GLuint>(-1); |
| 881 | } |
| 882 | |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 883 | bool ProgramState::hasAttachedShader() const |
| 884 | { |
| 885 | for (const Shader *shader : mAttachedShaders) |
| 886 | { |
| 887 | if (shader) |
| 888 | { |
| 889 | return true; |
| 890 | } |
| 891 | } |
| 892 | return false; |
| 893 | } |
| 894 | |
Geoff Lang | 4ddf5af | 2016-12-01 14:30:44 -0500 | [diff] [blame] | 895 | Program::Program(rx::GLImplFactory *factory, ShaderProgramManager *manager, GLuint handle) |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 896 | : mProgram(factory->createProgram(mState)), |
Jamie Madill | 5c6b7bf | 2015-08-17 12:53:35 -0400 | [diff] [blame] | 897 | mValidated(false), |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 898 | mLinked(false), |
jchen10 | 5055fba | 2018-08-17 09:57:07 +0800 | [diff] [blame] | 899 | mLinkResolved(true), |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 900 | mDeleteStatus(false), |
| 901 | mRefCount(0), |
| 902 | mResourceManager(manager), |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 903 | mHandle(handle) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 904 | { |
| 905 | ASSERT(mProgram); |
shannonwoods@chromium.org | 70eb1ea | 2013-05-30 00:07:20 +0000 | [diff] [blame] | 906 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 907 | unlink(); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 908 | } |
| 909 | |
| 910 | Program::~Program() |
| 911 | { |
Jamie Madill | 4928b7c | 2017-06-20 12:57:39 -0400 | [diff] [blame] | 912 | ASSERT(!mProgram); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 913 | } |
| 914 | |
Jamie Madill | 4928b7c | 2017-06-20 12:57:39 -0400 | [diff] [blame] | 915 | void Program::onDestroy(const Context *context) |
Jamie Madill | 6c1f671 | 2017-02-14 19:08:04 -0500 | [diff] [blame] | 916 | { |
Jamie Madill | 78bcd2b | 2018-10-16 15:05:20 -0400 | [diff] [blame] | 917 | resolveLink(context); |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 918 | for (ShaderType shaderType : AllShaderTypes()) |
Jamie Madill | 6c1f671 | 2017-02-14 19:08:04 -0500 | [diff] [blame] | 919 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 920 | if (mState.mAttachedShaders[shaderType]) |
| 921 | { |
| 922 | mState.mAttachedShaders[shaderType]->release(context); |
| 923 | mState.mAttachedShaders[shaderType] = nullptr; |
| 924 | } |
Jiawei Shao | 89be29a | 2017-11-06 14:36:45 +0800 | [diff] [blame] | 925 | } |
| 926 | |
Jamie Madill | f4a789f | 2018-10-18 16:56:20 -0400 | [diff] [blame] | 927 | mProgram->destroy(context); |
Jamie Madill | 4928b7c | 2017-06-20 12:57:39 -0400 | [diff] [blame] | 928 | |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 929 | ASSERT(!mState.hasAttachedShader()); |
Jamie Madill | 4928b7c | 2017-06-20 12:57:39 -0400 | [diff] [blame] | 930 | SafeDelete(mProgram); |
| 931 | |
| 932 | delete this; |
Jamie Madill | 6c1f671 | 2017-02-14 19:08:04 -0500 | [diff] [blame] | 933 | } |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 934 | GLuint Program::id() const |
| 935 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 936 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 937 | return mHandle; |
| 938 | } |
Jamie Madill | 6c1f671 | 2017-02-14 19:08:04 -0500 | [diff] [blame] | 939 | |
Jamie Madill | e90d4ee | 2018-11-28 14:04:00 -0500 | [diff] [blame] | 940 | void Program::setLabel(const Context *context, const std::string &label) |
Geoff Lang | 70d0f49 | 2015-12-10 17:45:46 -0500 | [diff] [blame] | 941 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 942 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 943 | mState.mLabel = label; |
Geoff Lang | 70d0f49 | 2015-12-10 17:45:46 -0500 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | const std::string &Program::getLabel() const |
| 947 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 948 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 949 | return mState.mLabel; |
Geoff Lang | 70d0f49 | 2015-12-10 17:45:46 -0500 | [diff] [blame] | 950 | } |
| 951 | |
Jamie Madill | ef300b1 | 2016-10-07 15:12:09 -0400 | [diff] [blame] | 952 | void Program::attachShader(Shader *shader) |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 953 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 954 | ASSERT(mLinkResolved); |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 955 | ShaderType shaderType = shader->getType(); |
| 956 | ASSERT(shaderType != ShaderType::InvalidEnum); |
| 957 | |
| 958 | mState.mAttachedShaders[shaderType] = shader; |
| 959 | mState.mAttachedShaders[shaderType]->addRef(); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 960 | } |
| 961 | |
Jamie Madill | c1d770e | 2017-04-13 17:31:24 -0400 | [diff] [blame] | 962 | void Program::detachShader(const Context *context, Shader *shader) |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 963 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 964 | ASSERT(mLinkResolved); |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 965 | ShaderType shaderType = shader->getType(); |
| 966 | ASSERT(shaderType != ShaderType::InvalidEnum); |
| 967 | |
| 968 | ASSERT(mState.mAttachedShaders[shaderType] == shader); |
| 969 | shader->release(context); |
| 970 | mState.mAttachedShaders[shaderType] = nullptr; |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 971 | } |
| 972 | |
daniel@transgaming.com | cba5057 | 2010-03-28 19:36:09 +0000 | [diff] [blame] | 973 | int Program::getAttachedShadersCount() const |
| 974 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 975 | ASSERT(mLinkResolved); |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 976 | int numAttachedShaders = 0; |
| 977 | for (const Shader *shader : mState.mAttachedShaders) |
| 978 | { |
| 979 | if (shader) |
| 980 | { |
| 981 | ++numAttachedShaders; |
| 982 | } |
| 983 | } |
| 984 | |
| 985 | return numAttachedShaders; |
daniel@transgaming.com | cba5057 | 2010-03-28 19:36:09 +0000 | [diff] [blame] | 986 | } |
| 987 | |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 988 | const Shader *Program::getAttachedShader(ShaderType shaderType) const |
| 989 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 990 | ASSERT(mLinkResolved); |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 991 | return mState.getAttachedShader(shaderType); |
| 992 | } |
| 993 | |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 994 | void Program::bindAttributeLocation(GLuint index, const char *name) |
| 995 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 996 | ASSERT(mLinkResolved); |
Geoff Lang | d860552 | 2016-04-13 10:19:12 -0400 | [diff] [blame] | 997 | mAttributeBindings.bindLocation(index, name); |
| 998 | } |
| 999 | |
| 1000 | void Program::bindUniformLocation(GLuint index, const char *name) |
| 1001 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1002 | ASSERT(mLinkResolved); |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 1003 | mUniformLocationBindings.bindLocation(index, name); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1006 | void Program::bindFragmentInputLocation(GLint index, const char *name) |
| 1007 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1008 | ASSERT(mLinkResolved); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1009 | mFragmentInputBindings.bindLocation(index, name); |
| 1010 | } |
| 1011 | |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 1012 | void Program::bindFragmentOutputLocation(GLuint index, const char *name) |
| 1013 | { |
| 1014 | mFragmentOutputLocations.bindLocation(index, name); |
| 1015 | } |
| 1016 | |
| 1017 | void Program::bindFragmentOutputIndex(GLuint index, const char *name) |
| 1018 | { |
| 1019 | mFragmentOutputIndexes.bindLocation(index, name); |
| 1020 | } |
| 1021 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1022 | BindingInfo Program::getFragmentInputBindingInfo(GLint index) const |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1023 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1024 | ASSERT(mLinkResolved); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1025 | BindingInfo ret; |
| 1026 | ret.type = GL_NONE; |
| 1027 | ret.valid = false; |
| 1028 | |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 1029 | Shader *fragmentShader = mState.getAttachedShader(ShaderType::Fragment); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1030 | ASSERT(fragmentShader); |
| 1031 | |
| 1032 | // Find the actual fragment shader varying we're interested in |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1033 | const std::vector<sh::Varying> &inputs = fragmentShader->getInputVaryings(); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1034 | |
| 1035 | for (const auto &binding : mFragmentInputBindings) |
| 1036 | { |
| 1037 | if (binding.second != static_cast<GLuint>(index)) |
| 1038 | continue; |
| 1039 | |
| 1040 | ret.valid = true; |
| 1041 | |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 1042 | size_t nameLengthWithoutArrayIndex; |
| 1043 | unsigned int arrayIndex = ParseArrayIndex(binding.first, &nameLengthWithoutArrayIndex); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1044 | |
| 1045 | for (const auto &in : inputs) |
| 1046 | { |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 1047 | if (in.name.length() == nameLengthWithoutArrayIndex && |
| 1048 | angle::BeginsWith(in.name, binding.first, nameLengthWithoutArrayIndex)) |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1049 | { |
| 1050 | if (in.isArray()) |
| 1051 | { |
| 1052 | // The client wants to bind either "name" or "name[0]". |
| 1053 | // GL ES 3.1 spec refers to active array names with language such as: |
| 1054 | // "if the string identifies the base name of an active array, where the |
| 1055 | // string would exactly match the name of the variable if the suffix "[0]" |
| 1056 | // were appended to the string". |
Geoff Lang | 3f6a398 | 2016-07-15 15:20:45 -0400 | [diff] [blame] | 1057 | if (arrayIndex == GL_INVALID_INDEX) |
| 1058 | arrayIndex = 0; |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1059 | |
Corentin Wallez | 054f7ed | 2016-09-20 17:15:59 -0400 | [diff] [blame] | 1060 | ret.name = in.mappedName + "[" + ToString(arrayIndex) + "]"; |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1061 | } |
| 1062 | else |
| 1063 | { |
| 1064 | ret.name = in.mappedName; |
| 1065 | } |
| 1066 | ret.type = in.type; |
| 1067 | return ret; |
| 1068 | } |
| 1069 | } |
| 1070 | } |
| 1071 | |
| 1072 | return ret; |
| 1073 | } |
| 1074 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1075 | void Program::pathFragmentInputGen(GLint index, |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1076 | GLenum genMode, |
| 1077 | GLint components, |
| 1078 | const GLfloat *coeffs) |
| 1079 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1080 | ASSERT(mLinkResolved); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1081 | // If the location is -1 then the command is silently ignored |
| 1082 | if (index == -1) |
| 1083 | return; |
| 1084 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1085 | const auto &binding = getFragmentInputBindingInfo(index); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 1086 | |
| 1087 | // If the input doesn't exist then then the command is silently ignored |
| 1088 | // This could happen through optimization for example, the shader translator |
| 1089 | // decides that a variable is not actually being used and optimizes it away. |
| 1090 | if (binding.name.empty()) |
| 1091 | return; |
| 1092 | |
| 1093 | mProgram->setPathFragmentInputGen(binding.name, genMode, components, coeffs); |
| 1094 | } |
| 1095 | |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1096 | // The attached shaders are checked for linking errors by matching up their variables. |
| 1097 | // Uniform, input and output variables get collected. |
| 1098 | // The code gets compiled into binaries. |
Jamie Madill | f4a789f | 2018-10-18 16:56:20 -0400 | [diff] [blame] | 1099 | angle::Result Program::link(const Context *context) |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1100 | { |
Jamie Madill | c3dc5d4 | 2018-12-30 12:12:04 -0500 | [diff] [blame] | 1101 | const auto &data = context->getState(); |
Jamie Madill | 8ecf7f9 | 2017-01-13 17:29:52 -0500 | [diff] [blame] | 1102 | |
Jamie Madill | 6c58b06 | 2017-08-01 13:44:25 -0400 | [diff] [blame] | 1103 | auto *platform = ANGLEPlatformCurrent(); |
| 1104 | double startTime = platform->currentTime(platform); |
| 1105 | |
Jamie Madill | 6c1f671 | 2017-02-14 19:08:04 -0500 | [diff] [blame] | 1106 | unlink(); |
Jamie Madill | 6bc264a | 2018-03-31 15:36:05 -0400 | [diff] [blame] | 1107 | mInfoLog.reset(); |
| 1108 | |
| 1109 | // Validate we have properly attached shaders before checking the cache. |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1110 | if (!linkValidateShaders(mInfoLog)) |
Jamie Madill | 6bc264a | 2018-03-31 15:36:05 -0400 | [diff] [blame] | 1111 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1112 | return angle::Result::Continue; |
Jamie Madill | 6bc264a | 2018-03-31 15:36:05 -0400 | [diff] [blame] | 1113 | } |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1114 | |
Shahbaz Youssefi | 9137ade | 2018-08-27 14:22:37 -0400 | [diff] [blame] | 1115 | egl::BlobCache::Key programHash = {0}; |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 1116 | MemoryProgramCache *cache = context->getMemoryProgramCache(); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1117 | |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1118 | if (cache) |
| 1119 | { |
Jamie Madill | 785e8a0 | 2018-10-04 17:42:00 -0400 | [diff] [blame] | 1120 | angle::Result result = cache->getProgram(context, this, &mState, &programHash); |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1121 | mLinked = (result == angle::Result::Continue); |
Jamie Madill | 785e8a0 | 2018-10-04 17:42:00 -0400 | [diff] [blame] | 1122 | ANGLE_TRY(result); |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1123 | } |
| 1124 | |
| 1125 | if (mLinked) |
| 1126 | { |
Jamie Madill | 6c58b06 | 2017-08-01 13:44:25 -0400 | [diff] [blame] | 1127 | double delta = platform->currentTime(platform) - startTime; |
| 1128 | int us = static_cast<int>(delta * 1000000.0); |
| 1129 | ANGLE_HISTOGRAM_COUNTS("GPU.ANGLE.ProgramCache.ProgramCacheHitTimeUS", us); |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1130 | return angle::Result::Continue; |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1131 | } |
| 1132 | |
| 1133 | // Cache load failed, fall through to normal linking. |
| 1134 | unlink(); |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 1135 | |
Jamie Madill | 6bc264a | 2018-03-31 15:36:05 -0400 | [diff] [blame] | 1136 | // Re-link shaders after the unlink call. |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1137 | ASSERT(linkValidateShaders(mInfoLog)); |
Yuly Novikov | cfa48d3 | 2016-06-15 22:14:36 -0400 | [diff] [blame] | 1138 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1139 | std::unique_ptr<ProgramLinkedResources> resources; |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 1140 | if (mState.mAttachedShaders[ShaderType::Compute]) |
Jamie Madill | 437d266 | 2014-12-05 14:23:35 -0500 | [diff] [blame] | 1141 | { |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1142 | resources.reset( |
| 1143 | new ProgramLinkedResources{{0, PackMode::ANGLE_RELAXED}, |
| 1144 | {&mState.mUniformBlocks, &mState.mUniforms}, |
| 1145 | {&mState.mShaderStorageBlocks, &mState.mBufferVariables}, |
| 1146 | {&mState.mAtomicCounterBuffers}, |
| 1147 | {}}); |
Luc Ferron | e17b5ba | 2018-06-04 14:28:58 -0400 | [diff] [blame] | 1148 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1149 | GLuint combinedImageUniforms = 0u; |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1150 | if (!linkUniforms(context->getCaps(), mInfoLog, mUniformLocationBindings, |
| 1151 | &combinedImageUniforms, &resources->unusedUniforms)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1152 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1153 | return angle::Result::Continue; |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1154 | } |
| 1155 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1156 | GLuint combinedShaderStorageBlocks = 0u; |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1157 | if (!linkInterfaceBlocks(context->getCaps(), context->getClientVersion(), |
| 1158 | context->getExtensions().webglCompatibility, mInfoLog, |
| 1159 | &combinedShaderStorageBlocks)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1160 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1161 | return angle::Result::Continue; |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1162 | } |
| 1163 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1164 | // [OpenGL ES 3.1] Chapter 8.22 Page 203: |
| 1165 | // A link error will be generated if the sum of the number of active image uniforms used in |
| 1166 | // all shaders, the number of active shader storage blocks, and the number of active |
| 1167 | // fragment shader outputs exceeds the implementation-dependent value of |
| 1168 | // MAX_COMBINED_SHADER_OUTPUT_RESOURCES. |
| 1169 | if (combinedImageUniforms + combinedShaderStorageBlocks > |
| 1170 | context->getCaps().maxCombinedShaderOutputResources) |
| 1171 | { |
| 1172 | mInfoLog |
| 1173 | << "The sum of the number of active image uniforms, active shader storage blocks " |
| 1174 | "and active fragment shader outputs exceeds " |
| 1175 | "MAX_COMBINED_SHADER_OUTPUT_RESOURCES (" |
| 1176 | << context->getCaps().maxCombinedShaderOutputResources << ")"; |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1177 | return angle::Result::Continue; |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1178 | } |
| 1179 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1180 | InitUniformBlockLinker(mState, &resources->uniformBlockLinker); |
| 1181 | InitShaderStorageBlockLinker(mState, &resources->shaderStorageBlockLinker); |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1182 | } |
| 1183 | else |
| 1184 | { |
Luc Ferron | e17b5ba | 2018-06-04 14:28:58 -0400 | [diff] [blame] | 1185 | // Map the varyings to the register file |
| 1186 | // In WebGL, we use a slightly different handling for packing variables. |
| 1187 | gl::PackMode packMode = PackMode::ANGLE_RELAXED; |
| 1188 | if (data.getLimitations().noFlexibleVaryingPacking) |
| 1189 | { |
| 1190 | // D3D9 pack mode is strictly more strict than WebGL, so takes priority. |
| 1191 | packMode = PackMode::ANGLE_NON_CONFORMANT_D3D9; |
| 1192 | } |
| 1193 | else if (data.getExtensions().webglCompatibility) |
| 1194 | { |
| 1195 | packMode = PackMode::WEBGL_STRICT; |
| 1196 | } |
| 1197 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1198 | resources.reset( |
| 1199 | new ProgramLinkedResources{{data.getCaps().maxVaryingVectors, packMode}, |
| 1200 | {&mState.mUniformBlocks, &mState.mUniforms}, |
| 1201 | {&mState.mShaderStorageBlocks, &mState.mBufferVariables}, |
| 1202 | {&mState.mAtomicCounterBuffers}, |
| 1203 | {}}); |
Luc Ferron | e17b5ba | 2018-06-04 14:28:58 -0400 | [diff] [blame] | 1204 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1205 | if (!linkAttributes(context->getCaps(), mInfoLog)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1206 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1207 | return angle::Result::Continue; |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1208 | } |
| 1209 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1210 | if (!linkVaryings(mInfoLog)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1211 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1212 | return angle::Result::Continue; |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1213 | } |
| 1214 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1215 | GLuint combinedImageUniforms = 0u; |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1216 | if (!linkUniforms(context->getCaps(), mInfoLog, mUniformLocationBindings, |
| 1217 | &combinedImageUniforms, &resources->unusedUniforms)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1218 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1219 | return angle::Result::Continue; |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1220 | } |
| 1221 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1222 | GLuint combinedShaderStorageBlocks = 0u; |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1223 | if (!linkInterfaceBlocks(context->getCaps(), context->getClientVersion(), |
| 1224 | context->getExtensions().webglCompatibility, mInfoLog, |
| 1225 | &combinedShaderStorageBlocks)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1226 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1227 | return angle::Result::Continue; |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1228 | } |
| 1229 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1230 | if (!linkValidateGlobalNames(mInfoLog)) |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 1231 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1232 | return angle::Result::Continue; |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 1233 | } |
| 1234 | |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 1235 | if (!linkOutputVariables(context->getCaps(), context->getExtensions(), |
| 1236 | context->getClientVersion(), combinedImageUniforms, |
| 1237 | combinedShaderStorageBlocks)) |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1238 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1239 | return angle::Result::Continue; |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 1240 | } |
| 1241 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1242 | const auto &mergedVaryings = getMergedVaryings(); |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1243 | |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 1244 | ASSERT(mState.mAttachedShaders[ShaderType::Vertex]); |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1245 | mState.mNumViews = mState.mAttachedShaders[ShaderType::Vertex]->getNumViews(); |
Martin Radev | 7cf6166 | 2017-07-26 17:10:53 +0300 | [diff] [blame] | 1246 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1247 | InitUniformBlockLinker(mState, &resources->uniformBlockLinker); |
| 1248 | InitShaderStorageBlockLinker(mState, &resources->shaderStorageBlockLinker); |
Jamie Madill | c9727f3 | 2017-11-07 12:37:07 -0500 | [diff] [blame] | 1249 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 1250 | if (!linkValidateTransformFeedback(context->getClientVersion(), mInfoLog, mergedVaryings, |
| 1251 | context->getCaps())) |
Jamie Madill | 192745a | 2016-12-22 15:58:21 -0500 | [diff] [blame] | 1252 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1253 | return angle::Result::Continue; |
Jamie Madill | 192745a | 2016-12-22 15:58:21 -0500 | [diff] [blame] | 1254 | } |
| 1255 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1256 | if (!resources->varyingPacking.collectAndPackUserVaryings( |
jchen10 | 85c93c4 | 2017-11-12 15:36:47 +0800 | [diff] [blame] | 1257 | mInfoLog, mergedVaryings, mState.getTransformFeedbackVaryingNames())) |
Olli Etuaho | 39e7812 | 2017-08-29 14:34:22 +0300 | [diff] [blame] | 1258 | { |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1259 | return angle::Result::Continue; |
Olli Etuaho | 39e7812 | 2017-08-29 14:34:22 +0300 | [diff] [blame] | 1260 | } |
| 1261 | |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1262 | gatherTransformFeedbackVaryings(mergedVaryings); |
Jamie Madill | 437d266 | 2014-12-05 14:23:35 -0500 | [diff] [blame] | 1263 | } |
| 1264 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1265 | mLinkingState.reset(new LinkingState()); |
| 1266 | mLinkingState->context = context; |
| 1267 | mLinkingState->programHash = programHash; |
| 1268 | mLinkingState->linkEvent = mProgram->link(context, *resources, mInfoLog); |
| 1269 | mLinkingState->resources = std::move(resources); |
jchen10 | 5055fba | 2018-08-17 09:57:07 +0800 | [diff] [blame] | 1270 | mLinkResolved = false; |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1271 | |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1272 | return angle::Result::Continue; |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1273 | } |
| 1274 | |
| 1275 | bool Program::isLinking() const |
| 1276 | { |
| 1277 | return (mLinkingState.get() && mLinkingState->linkEvent->isLinking()); |
| 1278 | } |
| 1279 | |
Jamie Madill | 785e8a0 | 2018-10-04 17:42:00 -0400 | [diff] [blame] | 1280 | void Program::resolveLinkImpl(const Context *context) |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1281 | { |
| 1282 | ASSERT(mLinkingState.get()); |
| 1283 | |
Jamie Madill | 785e8a0 | 2018-10-04 17:42:00 -0400 | [diff] [blame] | 1284 | angle::Result result = mLinkingState->linkEvent->wait(context); |
| 1285 | |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1286 | mLinked = result == angle::Result::Continue; |
jchen10 | 5055fba | 2018-08-17 09:57:07 +0800 | [diff] [blame] | 1287 | mLinkResolved = true; |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1288 | auto linkingState = std::move(mLinkingState); |
| 1289 | if (!mLinked) |
| 1290 | { |
| 1291 | return; |
| 1292 | } |
| 1293 | |
Jamie Madill | 6db1c2e | 2017-11-08 09:17:40 -0500 | [diff] [blame] | 1294 | initInterfaceBlockBindings(); |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 1295 | |
Yunchao He | ece1253 | 2017-11-21 15:50:21 +0800 | [diff] [blame] | 1296 | // According to GLES 3.0/3.1 spec for LinkProgram and UseProgram, |
| 1297 | // Only successfully linked program can replace the executables. |
Yunchao He | 85072e8 | 2017-11-14 15:43:28 +0800 | [diff] [blame] | 1298 | ASSERT(mLinked); |
| 1299 | updateLinkedShaderStages(); |
| 1300 | |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 1301 | // Mark implementation-specific unreferenced uniforms as ignored. |
Qin Jiajia | 47f6dd0 | 2018-08-10 13:36:32 +0800 | [diff] [blame] | 1302 | mProgram->markUnusedUniformLocations(&mState.mUniformLocations, &mState.mSamplerBindings, |
| 1303 | &mState.mImageBindings); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 1304 | |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 1305 | // Must be called after markUnusedUniformLocations. |
| 1306 | mState.updateActiveSamplers(); |
Qin Jiajia | 47f6dd0 | 2018-08-10 13:36:32 +0800 | [diff] [blame] | 1307 | mState.updateActiveImages(); |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 1308 | |
| 1309 | setUniformValuesFromBindingQualifiers(); |
| 1310 | |
Austin Eng | 1bf18ce | 2018-10-19 15:34:02 -0700 | [diff] [blame] | 1311 | if (context->getExtensions().multiDraw) |
| 1312 | { |
| 1313 | mState.mDrawIDLocation = getUniformLocation("gl_DrawID"); |
| 1314 | } |
| 1315 | |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1316 | // Save to the program cache. |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1317 | auto *cache = linkingState->context->getMemoryProgramCache(); |
| 1318 | if (cache && |
| 1319 | (mState.mLinkedTransformFeedbackVaryings.empty() || |
| 1320 | !linkingState->context->getWorkarounds().disableProgramCachingForTransformFeedback)) |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1321 | { |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1322 | cache->putProgram(linkingState->programHash, linkingState->context, this); |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1323 | } |
apatrick@chromium.org | 9a30b09 | 2012-06-06 20:21:55 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Yunchao He | 85072e8 | 2017-11-14 15:43:28 +0800 | [diff] [blame] | 1326 | void Program::updateLinkedShaderStages() |
| 1327 | { |
Yunchao He | ece1253 | 2017-11-21 15:50:21 +0800 | [diff] [blame] | 1328 | mState.mLinkedShaderStages.reset(); |
| 1329 | |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 1330 | for (const Shader *shader : mState.mAttachedShaders) |
Yunchao He | 85072e8 | 2017-11-14 15:43:28 +0800 | [diff] [blame] | 1331 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 1332 | if (shader) |
| 1333 | { |
| 1334 | mState.mLinkedShaderStages.set(shader->getType()); |
| 1335 | } |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 1336 | } |
Yunchao He | 85072e8 | 2017-11-14 15:43:28 +0800 | [diff] [blame] | 1337 | } |
| 1338 | |
James Darpinian | 30b604d | 2018-03-12 17:26:57 -0700 | [diff] [blame] | 1339 | void ProgramState::updateTransformFeedbackStrides() |
| 1340 | { |
| 1341 | if (mTransformFeedbackBufferMode == GL_INTERLEAVED_ATTRIBS) |
| 1342 | { |
| 1343 | mTransformFeedbackStrides.resize(1); |
| 1344 | size_t totalSize = 0; |
| 1345 | for (auto &varying : mLinkedTransformFeedbackVaryings) |
| 1346 | { |
| 1347 | totalSize += varying.size() * VariableExternalSize(varying.type); |
| 1348 | } |
| 1349 | mTransformFeedbackStrides[0] = static_cast<GLsizei>(totalSize); |
| 1350 | } |
| 1351 | else |
| 1352 | { |
| 1353 | mTransformFeedbackStrides.resize(mLinkedTransformFeedbackVaryings.size()); |
| 1354 | for (size_t i = 0; i < mLinkedTransformFeedbackVaryings.size(); i++) |
| 1355 | { |
| 1356 | auto &varying = mLinkedTransformFeedbackVaryings[i]; |
| 1357 | mTransformFeedbackStrides[i] = |
| 1358 | static_cast<GLsizei>(varying.size() * VariableExternalSize(varying.type)); |
| 1359 | } |
| 1360 | } |
| 1361 | } |
| 1362 | |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 1363 | void ProgramState::updateActiveSamplers() |
| 1364 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 1365 | mActiveSamplerRefCounts.fill(0); |
| 1366 | |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 1367 | for (SamplerBinding &samplerBinding : mSamplerBindings) |
| 1368 | { |
| 1369 | if (samplerBinding.unreferenced) |
| 1370 | continue; |
| 1371 | |
| 1372 | for (GLint textureUnit : samplerBinding.boundTextureUnits) |
| 1373 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 1374 | if (++mActiveSamplerRefCounts[textureUnit] == 1) |
| 1375 | { |
| 1376 | mActiveSamplerTypes[textureUnit] = samplerBinding.textureType; |
| 1377 | mActiveSamplerFormats[textureUnit] = samplerBinding.format; |
| 1378 | } |
| 1379 | else |
| 1380 | { |
| 1381 | if (mActiveSamplerTypes[textureUnit] != samplerBinding.textureType) |
| 1382 | { |
| 1383 | mActiveSamplerTypes[textureUnit] = TextureType::InvalidEnum; |
| 1384 | } |
| 1385 | if (mActiveSamplerFormats[textureUnit] != samplerBinding.format) |
| 1386 | { |
| 1387 | mActiveSamplerFormats[textureUnit] = SamplerFormat::InvalidEnum; |
| 1388 | } |
| 1389 | } |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 1390 | mActiveSamplersMask.set(textureUnit); |
| 1391 | } |
| 1392 | } |
| 1393 | } |
| 1394 | |
Qin Jiajia | 47f6dd0 | 2018-08-10 13:36:32 +0800 | [diff] [blame] | 1395 | void ProgramState::updateActiveImages() |
| 1396 | { |
| 1397 | for (ImageBinding &imageBinding : mImageBindings) |
| 1398 | { |
| 1399 | if (imageBinding.unreferenced) |
| 1400 | continue; |
| 1401 | |
| 1402 | for (GLint imageUnit : imageBinding.boundImageUnits) |
| 1403 | { |
| 1404 | mActiveImagesMask.set(imageUnit); |
| 1405 | } |
| 1406 | } |
| 1407 | } |
| 1408 | |
daniel@transgaming.com | aa5e59b | 2011-10-04 18:43:12 +0000 | [diff] [blame] | 1409 | // Returns the program object to an unlinked state, before re-linking, or at destruction |
Jamie Madill | 6c1f671 | 2017-02-14 19:08:04 -0500 | [diff] [blame] | 1410 | void Program::unlink() |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 1411 | { |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1412 | mState.mAttributes.clear(); |
Brandon Jones | c405ae7 | 2017-12-06 14:15:03 -0800 | [diff] [blame] | 1413 | mState.mAttributesTypeMask.reset(); |
| 1414 | mState.mAttributesMask.reset(); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1415 | mState.mActiveAttribLocationsMask.reset(); |
Jamie Madill | bd159f0 | 2017-10-09 19:39:06 -0400 | [diff] [blame] | 1416 | mState.mMaxActiveAttribLocation = 0; |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 1417 | mState.mLinkedTransformFeedbackVaryings.clear(); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1418 | mState.mUniforms.clear(); |
| 1419 | mState.mUniformLocations.clear(); |
| 1420 | mState.mUniformBlocks.clear(); |
jchen10 | 7a20b97 | 2017-06-13 14:25:26 +0800 | [diff] [blame] | 1421 | mState.mActiveUniformBlockBindings.reset(); |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 1422 | mState.mAtomicCounterBuffers.clear(); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1423 | mState.mOutputVariables.clear(); |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 1424 | mState.mOutputLocations.clear(); |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 1425 | mState.mOutputVariableTypes.clear(); |
Brandon Jones | 76746f9 | 2017-11-22 11:44:41 -0800 | [diff] [blame] | 1426 | mState.mDrawBufferTypeMask.reset(); |
Corentin Wallez | e755774 | 2017-06-01 13:09:57 -0400 | [diff] [blame] | 1427 | mState.mActiveOutputVariables.reset(); |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1428 | mState.mComputeShaderLocalSize.fill(1); |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 1429 | mState.mSamplerBindings.clear(); |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 1430 | mState.mImageBindings.clear(); |
Qin Jiajia | 47f6dd0 | 2018-08-10 13:36:32 +0800 | [diff] [blame] | 1431 | mState.mActiveImagesMask.reset(); |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 1432 | mState.mNumViews = -1; |
| 1433 | mState.mGeometryShaderInputPrimitiveType = PrimitiveMode::Triangles; |
| 1434 | mState.mGeometryShaderOutputPrimitiveType = PrimitiveMode::TriangleStrip; |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 1435 | mState.mGeometryShaderInvocations = 1; |
| 1436 | mState.mGeometryShaderMaxVertices = 0; |
Austin Eng | 1bf18ce | 2018-10-19 15:34:02 -0700 | [diff] [blame] | 1437 | mState.mDrawIDLocation = -1; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1438 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1439 | mValidated = false; |
| 1440 | |
daniel@transgaming.com | 716056c | 2012-07-24 18:38:59 +0000 | [diff] [blame] | 1441 | mLinked = false; |
Jamie Madill | 6bc264a | 2018-03-31 15:36:05 -0400 | [diff] [blame] | 1442 | mInfoLog.reset(); |
daniel@transgaming.com | 716056c | 2012-07-24 18:38:59 +0000 | [diff] [blame] | 1443 | } |
| 1444 | |
Jamie Madill | f4a789f | 2018-10-18 16:56:20 -0400 | [diff] [blame] | 1445 | angle::Result Program::loadBinary(const Context *context, |
| 1446 | GLenum binaryFormat, |
| 1447 | const void *binary, |
| 1448 | GLsizei length) |
apatrick@chromium.org | 3ce8dbc | 2012-06-08 17:52:30 +0000 | [diff] [blame] | 1449 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1450 | ASSERT(mLinkResolved); |
Jamie Madill | 6c1f671 | 2017-02-14 19:08:04 -0500 | [diff] [blame] | 1451 | unlink(); |
apatrick@chromium.org | 90080e3 | 2012-07-09 22:15:33 +0000 | [diff] [blame] | 1452 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1453 | #if ANGLE_PROGRAM_BINARY_LOAD != ANGLE_ENABLED |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1454 | return angle::Result::Continue; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1455 | #else |
Geoff Lang | c46cc2f | 2015-10-01 17:16:20 -0400 | [diff] [blame] | 1456 | ASSERT(binaryFormat == GL_PROGRAM_BINARY_ANGLE); |
| 1457 | if (binaryFormat != GL_PROGRAM_BINARY_ANGLE) |
apatrick@chromium.org | 90080e3 | 2012-07-09 22:15:33 +0000 | [diff] [blame] | 1458 | { |
Jamie Madill | f611316 | 2015-05-07 11:49:21 -0400 | [diff] [blame] | 1459 | mInfoLog << "Invalid program binary format."; |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1460 | return angle::Result::Continue; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1461 | } |
| 1462 | |
Jamie Madill | 4f86d05 | 2017-06-05 12:59:26 -0400 | [diff] [blame] | 1463 | const uint8_t *bytes = reinterpret_cast<const uint8_t *>(binary); |
Jamie Madill | 785e8a0 | 2018-10-04 17:42:00 -0400 | [diff] [blame] | 1464 | angle::Result result = |
| 1465 | MemoryProgramCache::Deserialize(context, this, &mState, bytes, length, mInfoLog); |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1466 | mLinked = result == angle::Result::Continue; |
Jamie Madill | 785e8a0 | 2018-10-04 17:42:00 -0400 | [diff] [blame] | 1467 | ANGLE_TRY(result); |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1468 | |
| 1469 | // Currently we require the full shader text to compute the program hash. |
Jamie Madill | 785e8a0 | 2018-10-04 17:42:00 -0400 | [diff] [blame] | 1470 | // We could also store the binary in the internal program cache. |
Jamie Madill | 3244736 | 2017-06-28 14:53:52 -0400 | [diff] [blame] | 1471 | |
Jamie Madill | 70aeda4 | 2018-08-20 12:17:40 -0400 | [diff] [blame] | 1472 | for (size_t uniformBlockIndex = 0; uniformBlockIndex < mState.mUniformBlocks.size(); |
| 1473 | ++uniformBlockIndex) |
| 1474 | { |
| 1475 | mDirtyBits.set(uniformBlockIndex); |
| 1476 | } |
| 1477 | |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1478 | return angle::Result::Continue; |
Jamie Madill | a2c7498 | 2016-12-12 11:20:42 -0500 | [diff] [blame] | 1479 | #endif // #if ANGLE_PROGRAM_BINARY_LOAD == ANGLE_ENABLED |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1480 | } |
| 1481 | |
Jamie Madill | f4a789f | 2018-10-18 16:56:20 -0400 | [diff] [blame] | 1482 | angle::Result Program::saveBinary(Context *context, |
| 1483 | GLenum *binaryFormat, |
| 1484 | void *binary, |
| 1485 | GLsizei bufSize, |
| 1486 | GLsizei *length) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1487 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1488 | ASSERT(mLinkResolved); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1489 | if (binaryFormat) |
| 1490 | { |
Geoff Lang | c46cc2f | 2015-10-01 17:16:20 -0400 | [diff] [blame] | 1491 | *binaryFormat = GL_PROGRAM_BINARY_ANGLE; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1492 | } |
| 1493 | |
Jamie Madill | 4f86d05 | 2017-06-05 12:59:26 -0400 | [diff] [blame] | 1494 | angle::MemoryBuffer memoryBuf; |
| 1495 | MemoryProgramCache::Serialize(context, this, &memoryBuf); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1496 | |
Jamie Madill | 4f86d05 | 2017-06-05 12:59:26 -0400 | [diff] [blame] | 1497 | GLsizei streamLength = static_cast<GLsizei>(memoryBuf.size()); |
| 1498 | const uint8_t *streamState = memoryBuf.data(); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1499 | |
| 1500 | if (streamLength > bufSize) |
| 1501 | { |
| 1502 | if (length) |
| 1503 | { |
| 1504 | *length = 0; |
| 1505 | } |
| 1506 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 1507 | // TODO: This should be moved to the validation layer but computing the size of the binary |
| 1508 | // before saving it causes the save to happen twice. It may be possible to write the binary |
| 1509 | // to a separate buffer, validate sizes and then copy it. |
Jamie Madill | f4a789f | 2018-10-18 16:56:20 -0400 | [diff] [blame] | 1510 | ANGLE_CHECK(context, false, "Insufficient buffer size", GL_INVALID_OPERATION); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | if (binary) |
| 1514 | { |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 1515 | char *ptr = reinterpret_cast<char *>(binary); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1516 | |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1517 | memcpy(ptr, streamState, streamLength); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1518 | ptr += streamLength; |
| 1519 | |
| 1520 | ASSERT(ptr - streamLength == binary); |
| 1521 | } |
| 1522 | |
| 1523 | if (length) |
| 1524 | { |
| 1525 | *length = streamLength; |
| 1526 | } |
| 1527 | |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1528 | return angle::Result::Continue; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1529 | } |
| 1530 | |
Jamie Madill | f4a789f | 2018-10-18 16:56:20 -0400 | [diff] [blame] | 1531 | GLint Program::getBinaryLength(Context *context) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1532 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1533 | ASSERT(mLinkResolved); |
Geoff Lang | b26ab82 | 2018-05-29 11:19:00 -0400 | [diff] [blame] | 1534 | if (!mLinked) |
| 1535 | { |
| 1536 | return 0; |
| 1537 | } |
| 1538 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1539 | GLint length; |
Jamie Madill | f4a789f | 2018-10-18 16:56:20 -0400 | [diff] [blame] | 1540 | angle::Result result = |
| 1541 | saveBinary(context, nullptr, nullptr, std::numeric_limits<GLint>::max(), &length); |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 1542 | if (result != angle::Result::Continue) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1543 | { |
| 1544 | return 0; |
| 1545 | } |
| 1546 | |
| 1547 | return length; |
apatrick@chromium.org | 3ce8dbc | 2012-06-08 17:52:30 +0000 | [diff] [blame] | 1548 | } |
| 1549 | |
Geoff Lang | c562975 | 2015-12-07 16:29:04 -0500 | [diff] [blame] | 1550 | void Program::setBinaryRetrievableHint(bool retrievable) |
| 1551 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1552 | ASSERT(mLinkResolved); |
Geoff Lang | c562975 | 2015-12-07 16:29:04 -0500 | [diff] [blame] | 1553 | // TODO(jmadill) : replace with dirty bits |
| 1554 | mProgram->setBinaryRetrievableHint(retrievable); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1555 | mState.mBinaryRetrieveableHint = retrievable; |
Geoff Lang | c562975 | 2015-12-07 16:29:04 -0500 | [diff] [blame] | 1556 | } |
| 1557 | |
| 1558 | bool Program::getBinaryRetrievableHint() const |
| 1559 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1560 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1561 | return mState.mBinaryRetrieveableHint; |
Geoff Lang | c562975 | 2015-12-07 16:29:04 -0500 | [diff] [blame] | 1562 | } |
| 1563 | |
Yunchao He | 61afff1 | 2017-03-14 15:34:03 +0800 | [diff] [blame] | 1564 | void Program::setSeparable(bool separable) |
| 1565 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1566 | ASSERT(mLinkResolved); |
Yunchao He | 61afff1 | 2017-03-14 15:34:03 +0800 | [diff] [blame] | 1567 | // TODO(yunchao) : replace with dirty bits |
| 1568 | if (mState.mSeparable != separable) |
| 1569 | { |
| 1570 | mProgram->setSeparable(separable); |
| 1571 | mState.mSeparable = separable; |
| 1572 | } |
| 1573 | } |
| 1574 | |
| 1575 | bool Program::isSeparable() const |
| 1576 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1577 | ASSERT(mLinkResolved); |
Yunchao He | 61afff1 | 2017-03-14 15:34:03 +0800 | [diff] [blame] | 1578 | return mState.mSeparable; |
| 1579 | } |
| 1580 | |
Jamie Madill | 956ab4d | 2018-10-10 16:13:03 -0400 | [diff] [blame] | 1581 | void Program::deleteSelf(const Context *context) |
daniel@transgaming.com | da13f3e | 2010-07-28 19:20:56 +0000 | [diff] [blame] | 1582 | { |
Jamie Madill | 956ab4d | 2018-10-10 16:13:03 -0400 | [diff] [blame] | 1583 | ASSERT(mRefCount == 0 && mDeleteStatus); |
| 1584 | mResourceManager->deleteProgram(context, mHandle); |
daniel@transgaming.com | da13f3e | 2010-07-28 19:20:56 +0000 | [diff] [blame] | 1585 | } |
| 1586 | |
| 1587 | unsigned int Program::getRefCount() const |
| 1588 | { |
| 1589 | return mRefCount; |
| 1590 | } |
| 1591 | |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1592 | int Program::getInfoLogLength() const |
| 1593 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1594 | ASSERT(mLinkResolved); |
Jamie Madill | 71c3b2c | 2015-05-07 11:49:20 -0400 | [diff] [blame] | 1595 | return static_cast<int>(mInfoLog.getLength()); |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1596 | } |
| 1597 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1598 | void Program::getInfoLog(GLsizei bufSize, GLsizei *length, char *infoLog) const |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1599 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1600 | ASSERT(mLinkResolved); |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 1601 | return mInfoLog.getLog(bufSize, length, infoLog); |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1602 | } |
| 1603 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1604 | void Program::getAttachedShaders(GLsizei maxCount, GLsizei *count, GLuint *shaders) const |
daniel@transgaming.com | 6c78521 | 2010-03-30 03:36:17 +0000 | [diff] [blame] | 1605 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1606 | ASSERT(mLinkResolved); |
daniel@transgaming.com | 6c78521 | 2010-03-30 03:36:17 +0000 | [diff] [blame] | 1607 | int total = 0; |
| 1608 | |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 1609 | for (const Shader *shader : mState.mAttachedShaders) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1610 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 1611 | if (shader && (total < maxCount)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 1612 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 1613 | shaders[total] = shader->getHandle(); |
| 1614 | ++total; |
Jiawei Shao | 89be29a | 2017-11-06 14:36:45 +0800 | [diff] [blame] | 1615 | } |
| 1616 | } |
| 1617 | |
daniel@transgaming.com | 6c78521 | 2010-03-30 03:36:17 +0000 | [diff] [blame] | 1618 | if (count) |
| 1619 | { |
| 1620 | *count = total; |
| 1621 | } |
| 1622 | } |
| 1623 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1624 | GLuint Program::getAttributeLocation(const std::string &name) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1625 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1626 | ASSERT(mLinkResolved); |
Jamie Madill | 34ca4f5 | 2017-06-13 11:49:39 -0400 | [diff] [blame] | 1627 | return mState.getAttributeLocation(name); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1628 | } |
| 1629 | |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 1630 | bool Program::isAttribLocationActive(size_t attribLocation) const |
Jamie Madill | 56c6e3c | 2015-04-15 10:18:05 -0400 | [diff] [blame] | 1631 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1632 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1633 | ASSERT(attribLocation < mState.mActiveAttribLocationsMask.size()); |
| 1634 | return mState.mActiveAttribLocationsMask[attribLocation]; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1635 | } |
| 1636 | |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1637 | void Program::getActiveAttribute(GLuint index, |
| 1638 | GLsizei bufsize, |
| 1639 | GLsizei *length, |
| 1640 | GLint *size, |
| 1641 | GLenum *type, |
| 1642 | GLchar *name) const |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1643 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1644 | ASSERT(mLinkResolved); |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1645 | if (!mLinked) |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1646 | { |
| 1647 | if (bufsize > 0) |
| 1648 | { |
| 1649 | name[0] = '\0'; |
| 1650 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1651 | |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1652 | if (length) |
| 1653 | { |
| 1654 | *length = 0; |
| 1655 | } |
| 1656 | |
| 1657 | *type = GL_NONE; |
| 1658 | *size = 1; |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1659 | return; |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1660 | } |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1661 | |
jchen10 | 36e120e | 2017-03-14 14:53:58 +0800 | [diff] [blame] | 1662 | ASSERT(index < mState.mAttributes.size()); |
| 1663 | const sh::Attribute &attrib = mState.mAttributes[index]; |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1664 | |
| 1665 | if (bufsize > 0) |
| 1666 | { |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1667 | CopyStringToBuffer(name, attrib.name, bufsize, length); |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1668 | } |
| 1669 | |
| 1670 | // Always a single 'type' instance |
| 1671 | *size = 1; |
| 1672 | *type = attrib.type; |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1673 | } |
| 1674 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1675 | GLint Program::getActiveAttributeCount() const |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1676 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1677 | ASSERT(mLinkResolved); |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1678 | if (!mLinked) |
Jamie Madill | 2d77318 | 2015-08-18 10:27:28 -0400 | [diff] [blame] | 1679 | { |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1680 | return 0; |
| 1681 | } |
| 1682 | |
jchen10 | 36e120e | 2017-03-14 14:53:58 +0800 | [diff] [blame] | 1683 | return static_cast<GLint>(mState.mAttributes.size()); |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1684 | } |
| 1685 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1686 | GLint Program::getActiveAttributeMaxLength() const |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1687 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1688 | ASSERT(mLinkResolved); |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1689 | if (!mLinked) |
Jamie Madill | 2d77318 | 2015-08-18 10:27:28 -0400 | [diff] [blame] | 1690 | { |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1691 | return 0; |
| 1692 | } |
| 1693 | |
| 1694 | size_t maxLength = 0; |
| 1695 | |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1696 | for (const sh::Attribute &attrib : mState.mAttributes) |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1697 | { |
jchen10 | 36e120e | 2017-03-14 14:53:58 +0800 | [diff] [blame] | 1698 | maxLength = std::max(attrib.name.length() + 1, maxLength); |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1699 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1700 | |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 1701 | return static_cast<GLint>(maxLength); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1702 | } |
| 1703 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1704 | const std::vector<sh::Attribute> &Program::getAttributes() const |
| 1705 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1706 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1707 | return mState.mAttributes; |
| 1708 | } |
| 1709 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1710 | const std::vector<SamplerBinding> &Program::getSamplerBindings() const |
| 1711 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1712 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1713 | return mState.mSamplerBindings; |
| 1714 | } |
| 1715 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1716 | const sh::WorkGroupSize &Program::getComputeShaderLocalSize() const |
| 1717 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1718 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1719 | return mState.mComputeShaderLocalSize; |
| 1720 | } |
| 1721 | |
| 1722 | PrimitiveMode Program::getGeometryShaderInputPrimitiveType() const |
| 1723 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1724 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1725 | return mState.mGeometryShaderInputPrimitiveType; |
| 1726 | } |
| 1727 | PrimitiveMode Program::getGeometryShaderOutputPrimitiveType() const |
| 1728 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1729 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1730 | return mState.mGeometryShaderOutputPrimitiveType; |
| 1731 | } |
| 1732 | GLint Program::getGeometryShaderInvocations() const |
| 1733 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1734 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1735 | return mState.mGeometryShaderInvocations; |
| 1736 | } |
| 1737 | GLint Program::getGeometryShaderMaxVertices() const |
| 1738 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1739 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1740 | return mState.mGeometryShaderMaxVertices; |
| 1741 | } |
| 1742 | |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 1743 | GLuint Program::getInputResourceIndex(const GLchar *name) const |
| 1744 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1745 | ASSERT(mLinkResolved); |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 1746 | return GetResourceIndexFromName(mState.mAttributes, std::string(name)); |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 1747 | } |
| 1748 | |
| 1749 | GLuint Program::getOutputResourceIndex(const GLchar *name) const |
| 1750 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1751 | ASSERT(mLinkResolved); |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 1752 | return GetResourceIndexFromName(mState.mOutputVariables, std::string(name)); |
| 1753 | } |
| 1754 | |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1755 | size_t Program::getOutputResourceCount() const |
| 1756 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1757 | ASSERT(mLinkResolved); |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1758 | return (mLinked ? mState.mOutputVariables.size() : 0); |
| 1759 | } |
| 1760 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1761 | const std::vector<GLenum> &Program::getOutputVariableTypes() const |
| 1762 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1763 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1764 | return mState.mOutputVariableTypes; |
| 1765 | } |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1766 | |
jchen10 | baf5d94 | 2017-08-28 20:45:48 +0800 | [diff] [blame] | 1767 | template <typename T> |
| 1768 | void Program::getResourceName(GLuint index, |
| 1769 | const std::vector<T> &resources, |
| 1770 | GLsizei bufSize, |
| 1771 | GLsizei *length, |
| 1772 | GLchar *name) const |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1773 | { |
| 1774 | if (length) |
| 1775 | { |
| 1776 | *length = 0; |
| 1777 | } |
| 1778 | |
| 1779 | if (!mLinked) |
| 1780 | { |
| 1781 | if (bufSize > 0) |
| 1782 | { |
| 1783 | name[0] = '\0'; |
| 1784 | } |
| 1785 | return; |
| 1786 | } |
jchen10 | baf5d94 | 2017-08-28 20:45:48 +0800 | [diff] [blame] | 1787 | ASSERT(index < resources.size()); |
| 1788 | const auto &resource = resources[index]; |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1789 | |
| 1790 | if (bufSize > 0) |
| 1791 | { |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 1792 | CopyStringToBuffer(name, resource.name, bufSize, length); |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1793 | } |
| 1794 | } |
| 1795 | |
jchen10 | baf5d94 | 2017-08-28 20:45:48 +0800 | [diff] [blame] | 1796 | void Program::getInputResourceName(GLuint index, |
| 1797 | GLsizei bufSize, |
| 1798 | GLsizei *length, |
| 1799 | GLchar *name) const |
| 1800 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1801 | ASSERT(mLinkResolved); |
jchen10 | baf5d94 | 2017-08-28 20:45:48 +0800 | [diff] [blame] | 1802 | getResourceName(index, mState.mAttributes, bufSize, length, name); |
| 1803 | } |
| 1804 | |
| 1805 | void Program::getOutputResourceName(GLuint index, |
| 1806 | GLsizei bufSize, |
| 1807 | GLsizei *length, |
| 1808 | GLchar *name) const |
| 1809 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1810 | ASSERT(mLinkResolved); |
jchen10 | baf5d94 | 2017-08-28 20:45:48 +0800 | [diff] [blame] | 1811 | getResourceName(index, mState.mOutputVariables, bufSize, length, name); |
| 1812 | } |
| 1813 | |
| 1814 | void Program::getUniformResourceName(GLuint index, |
| 1815 | GLsizei bufSize, |
| 1816 | GLsizei *length, |
| 1817 | GLchar *name) const |
| 1818 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1819 | ASSERT(mLinkResolved); |
jchen10 | baf5d94 | 2017-08-28 20:45:48 +0800 | [diff] [blame] | 1820 | getResourceName(index, mState.mUniforms, bufSize, length, name); |
| 1821 | } |
| 1822 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 1823 | void Program::getBufferVariableResourceName(GLuint index, |
| 1824 | GLsizei bufSize, |
| 1825 | GLsizei *length, |
| 1826 | GLchar *name) const |
| 1827 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1828 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 1829 | getResourceName(index, mState.mBufferVariables, bufSize, length, name); |
| 1830 | } |
| 1831 | |
jchen10 | 880683b | 2017-04-12 16:21:55 +0800 | [diff] [blame] | 1832 | const sh::Attribute &Program::getInputResource(GLuint index) const |
| 1833 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1834 | ASSERT(mLinkResolved); |
jchen10 | 880683b | 2017-04-12 16:21:55 +0800 | [diff] [blame] | 1835 | ASSERT(index < mState.mAttributes.size()); |
| 1836 | return mState.mAttributes[index]; |
| 1837 | } |
| 1838 | |
| 1839 | const sh::OutputVariable &Program::getOutputResource(GLuint index) const |
| 1840 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1841 | ASSERT(mLinkResolved); |
jchen10 | 880683b | 2017-04-12 16:21:55 +0800 | [diff] [blame] | 1842 | ASSERT(index < mState.mOutputVariables.size()); |
| 1843 | return mState.mOutputVariables[index]; |
| 1844 | } |
| 1845 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1846 | const ProgramBindings &Program::getAttributeBindings() const |
| 1847 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1848 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1849 | return mAttributeBindings; |
| 1850 | } |
| 1851 | const ProgramBindings &Program::getUniformLocationBindings() const |
| 1852 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1853 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1854 | return mUniformLocationBindings; |
| 1855 | } |
| 1856 | const ProgramBindings &Program::getFragmentInputBindings() const |
| 1857 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1858 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1859 | return mFragmentInputBindings; |
| 1860 | } |
| 1861 | |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1862 | ComponentTypeMask Program::getDrawBufferTypeMask() const |
| 1863 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1864 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1865 | return mState.mDrawBufferTypeMask; |
| 1866 | } |
| 1867 | ComponentTypeMask Program::getAttributesTypeMask() const |
| 1868 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1869 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1870 | return mState.mAttributesTypeMask; |
| 1871 | } |
| 1872 | AttributesMask Program::getAttributesMask() const |
| 1873 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1874 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1875 | return mState.mAttributesMask; |
| 1876 | } |
| 1877 | |
| 1878 | const std::vector<GLsizei> &Program::getTransformFeedbackStrides() const |
| 1879 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1880 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 1881 | return mState.mTransformFeedbackStrides; |
| 1882 | } |
| 1883 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1884 | GLint Program::getFragDataLocation(const std::string &name) const |
| 1885 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1886 | ASSERT(mLinkResolved); |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 1887 | GLint primaryLocation = |
| 1888 | GetVariableLocation(mState.mOutputVariables, mState.mOutputLocations, name); |
| 1889 | if (primaryLocation != -1) |
| 1890 | { |
| 1891 | return primaryLocation; |
| 1892 | } |
| 1893 | return GetVariableLocation(mState.mOutputVariables, mState.mSecondaryOutputLocations, name); |
| 1894 | } |
| 1895 | |
| 1896 | GLint Program::getFragDataIndex(const std::string &name) const |
| 1897 | { |
| 1898 | ASSERT(mLinkResolved); |
| 1899 | if (GetVariableLocation(mState.mOutputVariables, mState.mOutputLocations, name) != -1) |
| 1900 | { |
| 1901 | return 0; |
| 1902 | } |
| 1903 | if (GetVariableLocation(mState.mOutputVariables, mState.mSecondaryOutputLocations, name) != -1) |
| 1904 | { |
| 1905 | return 1; |
| 1906 | } |
| 1907 | return -1; |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1908 | } |
| 1909 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1910 | void Program::getActiveUniform(GLuint index, |
| 1911 | GLsizei bufsize, |
| 1912 | GLsizei *length, |
| 1913 | GLint *size, |
| 1914 | GLenum *type, |
| 1915 | GLchar *name) const |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1916 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1917 | ASSERT(mLinkResolved); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1918 | if (mLinked) |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1919 | { |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 1920 | // index must be smaller than getActiveUniformCount() |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1921 | ASSERT(index < mState.mUniforms.size()); |
| 1922 | const LinkedUniform &uniform = mState.mUniforms[index]; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1923 | |
| 1924 | if (bufsize > 0) |
| 1925 | { |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 1926 | std::string string = uniform.name; |
jchen10 | fd7c3b5 | 2017-03-21 15:36:03 +0800 | [diff] [blame] | 1927 | CopyStringToBuffer(name, string, bufsize, length); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1928 | } |
| 1929 | |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 1930 | *size = clampCast<GLint>(uniform.getBasicTypeElementCount()); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 1931 | *type = uniform.type; |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1932 | } |
| 1933 | else |
| 1934 | { |
| 1935 | if (bufsize > 0) |
| 1936 | { |
| 1937 | name[0] = '\0'; |
| 1938 | } |
| 1939 | |
| 1940 | if (length) |
| 1941 | { |
| 1942 | *length = 0; |
| 1943 | } |
| 1944 | |
| 1945 | *size = 0; |
| 1946 | *type = GL_NONE; |
| 1947 | } |
| 1948 | } |
| 1949 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1950 | GLint Program::getActiveUniformCount() const |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1951 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1952 | ASSERT(mLinkResolved); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1953 | if (mLinked) |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1954 | { |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1955 | return static_cast<GLint>(mState.mUniforms.size()); |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1956 | } |
| 1957 | else |
| 1958 | { |
| 1959 | return 0; |
| 1960 | } |
| 1961 | } |
| 1962 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 1963 | size_t Program::getActiveBufferVariableCount() const |
| 1964 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1965 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 1966 | return mLinked ? mState.mBufferVariables.size() : 0; |
| 1967 | } |
| 1968 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 1969 | GLint Program::getActiveUniformMaxLength() const |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1970 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1971 | ASSERT(mLinkResolved); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 1972 | size_t maxLength = 0; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1973 | |
| 1974 | if (mLinked) |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1975 | { |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1976 | for (const LinkedUniform &uniform : mState.mUniforms) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1977 | { |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 1978 | if (!uniform.name.empty()) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1979 | { |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 1980 | size_t length = uniform.name.length() + 1u; |
| 1981 | if (uniform.isArray()) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1982 | { |
| 1983 | length += 3; // Counting in "[0]". |
| 1984 | } |
| 1985 | maxLength = std::max(length, maxLength); |
| 1986 | } |
| 1987 | } |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 1988 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1989 | |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 1990 | return static_cast<GLint>(maxLength); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1991 | } |
| 1992 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 1993 | bool Program::isValidUniformLocation(GLint location) const |
| 1994 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 1995 | ASSERT(mLinkResolved); |
Jamie Madill | e2e406c | 2016-06-02 13:04:10 -0400 | [diff] [blame] | 1996 | ASSERT(angle::IsValueInRangeForNumericType<GLint>(mState.mUniformLocations.size())); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 1997 | return (location >= 0 && static_cast<size_t>(location) < mState.mUniformLocations.size() && |
Jamie Madill | fb997ec | 2017-09-20 15:44:27 -0400 | [diff] [blame] | 1998 | mState.mUniformLocations[static_cast<size_t>(location)].used()); |
Geoff Lang | d860552 | 2016-04-13 10:19:12 -0400 | [diff] [blame] | 1999 | } |
| 2000 | |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 2001 | const LinkedUniform &Program::getUniformByLocation(GLint location) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2002 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2003 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2004 | ASSERT(location >= 0 && static_cast<size_t>(location) < mState.mUniformLocations.size()); |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 2005 | return mState.mUniforms[mState.getUniformIndexFromLocation(location)]; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2006 | } |
| 2007 | |
Jamie Madill | ac4e9c3 | 2017-01-13 14:07:12 -0500 | [diff] [blame] | 2008 | const VariableLocation &Program::getUniformLocation(GLint location) const |
| 2009 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2010 | ASSERT(mLinkResolved); |
Jamie Madill | ac4e9c3 | 2017-01-13 14:07:12 -0500 | [diff] [blame] | 2011 | ASSERT(location >= 0 && static_cast<size_t>(location) < mState.mUniformLocations.size()); |
| 2012 | return mState.mUniformLocations[location]; |
| 2013 | } |
| 2014 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2015 | const BufferVariable &Program::getBufferVariableByIndex(GLuint index) const |
| 2016 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2017 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2018 | ASSERT(index < static_cast<size_t>(mState.mBufferVariables.size())); |
| 2019 | return mState.mBufferVariables[index]; |
| 2020 | } |
| 2021 | |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 2022 | GLint Program::getUniformLocation(const std::string &name) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2023 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2024 | ASSERT(mLinkResolved); |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 2025 | return GetVariableLocation(mState.mUniforms, mState.mUniformLocations, name); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2026 | } |
| 2027 | |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 2028 | GLuint Program::getUniformIndex(const std::string &name) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2029 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2030 | ASSERT(mLinkResolved); |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 2031 | return mState.getUniformIndexFromName(name); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2032 | } |
| 2033 | |
| 2034 | void Program::setUniform1fv(GLint location, GLsizei count, const GLfloat *v) |
| 2035 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2036 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2037 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2038 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 1, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2039 | mProgram->setUniform1fv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2040 | } |
| 2041 | |
| 2042 | void Program::setUniform2fv(GLint location, GLsizei count, const GLfloat *v) |
| 2043 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2044 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2045 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2046 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 2, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2047 | mProgram->setUniform2fv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2048 | } |
| 2049 | |
| 2050 | void Program::setUniform3fv(GLint location, GLsizei count, const GLfloat *v) |
| 2051 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2052 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2053 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2054 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 3, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2055 | mProgram->setUniform3fv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2056 | } |
| 2057 | |
| 2058 | void Program::setUniform4fv(GLint location, GLsizei count, const GLfloat *v) |
| 2059 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2060 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2061 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2062 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 4, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2063 | mProgram->setUniform4fv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2064 | } |
| 2065 | |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 2066 | void Program::setUniform1iv(Context *context, GLint location, GLsizei count, const GLint *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2067 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2068 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2069 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2070 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 1, v); |
| 2071 | |
Jamie Madill | 81c2e25 | 2017-09-09 23:32:46 -0400 | [diff] [blame] | 2072 | mProgram->setUniform1iv(location, clampedCount, v); |
| 2073 | |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2074 | if (mState.isSamplerUniformIndex(locationInfo.index)) |
| 2075 | { |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 2076 | updateSamplerUniform(context, locationInfo, clampedCount, v); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2077 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2078 | } |
| 2079 | |
| 2080 | void Program::setUniform2iv(GLint location, GLsizei count, const GLint *v) |
| 2081 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2082 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2083 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2084 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 2, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2085 | mProgram->setUniform2iv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2086 | } |
| 2087 | |
| 2088 | void Program::setUniform3iv(GLint location, GLsizei count, const GLint *v) |
| 2089 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2090 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2091 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2092 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 3, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2093 | mProgram->setUniform3iv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2094 | } |
| 2095 | |
| 2096 | void Program::setUniform4iv(GLint location, GLsizei count, const GLint *v) |
| 2097 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2098 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2099 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2100 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 4, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2101 | mProgram->setUniform4iv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2102 | } |
| 2103 | |
| 2104 | void Program::setUniform1uiv(GLint location, GLsizei count, const GLuint *v) |
| 2105 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2106 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2107 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2108 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 1, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2109 | mProgram->setUniform1uiv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2110 | } |
| 2111 | |
| 2112 | void Program::setUniform2uiv(GLint location, GLsizei count, const GLuint *v) |
| 2113 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2114 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2115 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2116 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 2, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2117 | mProgram->setUniform2uiv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2118 | } |
| 2119 | |
| 2120 | void Program::setUniform3uiv(GLint location, GLsizei count, const GLuint *v) |
| 2121 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2122 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2123 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2124 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 3, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2125 | mProgram->setUniform3uiv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2126 | } |
| 2127 | |
| 2128 | void Program::setUniform4uiv(GLint location, GLsizei count, const GLuint *v) |
| 2129 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2130 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2131 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 2132 | GLsizei clampedCount = clampUniformCount(locationInfo, count, 4, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2133 | mProgram->setUniform4uiv(location, clampedCount, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2134 | } |
| 2135 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2136 | void Program::setUniformMatrix2fv(GLint location, |
| 2137 | GLsizei count, |
| 2138 | GLboolean transpose, |
| 2139 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2140 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2141 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2142 | GLsizei clampedCount = clampMatrixUniformCount<2, 2>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2143 | mProgram->setUniformMatrix2fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2144 | } |
| 2145 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2146 | void Program::setUniformMatrix3fv(GLint location, |
| 2147 | GLsizei count, |
| 2148 | GLboolean transpose, |
| 2149 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2150 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2151 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2152 | GLsizei clampedCount = clampMatrixUniformCount<3, 3>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2153 | mProgram->setUniformMatrix3fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2154 | } |
| 2155 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2156 | void Program::setUniformMatrix4fv(GLint location, |
| 2157 | GLsizei count, |
| 2158 | GLboolean transpose, |
| 2159 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2160 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2161 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2162 | GLsizei clampedCount = clampMatrixUniformCount<4, 4>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2163 | mProgram->setUniformMatrix4fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2164 | } |
| 2165 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2166 | void Program::setUniformMatrix2x3fv(GLint location, |
| 2167 | GLsizei count, |
| 2168 | GLboolean transpose, |
| 2169 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2170 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2171 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2172 | GLsizei clampedCount = clampMatrixUniformCount<2, 3>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2173 | mProgram->setUniformMatrix2x3fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2174 | } |
| 2175 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2176 | void Program::setUniformMatrix2x4fv(GLint location, |
| 2177 | GLsizei count, |
| 2178 | GLboolean transpose, |
| 2179 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2180 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2181 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2182 | GLsizei clampedCount = clampMatrixUniformCount<2, 4>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2183 | mProgram->setUniformMatrix2x4fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2184 | } |
| 2185 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2186 | void Program::setUniformMatrix3x2fv(GLint location, |
| 2187 | GLsizei count, |
| 2188 | GLboolean transpose, |
| 2189 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2190 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2191 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2192 | GLsizei clampedCount = clampMatrixUniformCount<3, 2>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2193 | mProgram->setUniformMatrix3x2fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2194 | } |
| 2195 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2196 | void Program::setUniformMatrix3x4fv(GLint location, |
| 2197 | GLsizei count, |
| 2198 | GLboolean transpose, |
| 2199 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2200 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2201 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2202 | GLsizei clampedCount = clampMatrixUniformCount<3, 4>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2203 | mProgram->setUniformMatrix3x4fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2204 | } |
| 2205 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2206 | void Program::setUniformMatrix4x2fv(GLint location, |
| 2207 | GLsizei count, |
| 2208 | GLboolean transpose, |
| 2209 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2210 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2211 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2212 | GLsizei clampedCount = clampMatrixUniformCount<4, 2>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2213 | mProgram->setUniformMatrix4x2fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2214 | } |
| 2215 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2216 | void Program::setUniformMatrix4x3fv(GLint location, |
| 2217 | GLsizei count, |
| 2218 | GLboolean transpose, |
| 2219 | const GLfloat *v) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2220 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2221 | ASSERT(mLinkResolved); |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 2222 | GLsizei clampedCount = clampMatrixUniformCount<4, 3>(location, count, transpose, v); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 2223 | mProgram->setUniformMatrix4x3fv(location, clampedCount, transpose, v); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2224 | } |
| 2225 | |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2226 | GLuint Program::getSamplerUniformBinding(const VariableLocation &uniformLocation) const |
| 2227 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2228 | ASSERT(mLinkResolved); |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2229 | GLuint samplerIndex = mState.getSamplerIndexFromUniformIndex(uniformLocation.index); |
| 2230 | const std::vector<GLuint> &boundTextureUnits = |
| 2231 | mState.mSamplerBindings[samplerIndex].boundTextureUnits; |
| 2232 | return boundTextureUnits[uniformLocation.arrayIndex]; |
| 2233 | } |
| 2234 | |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2235 | void Program::getUniformfv(const Context *context, GLint location, GLfloat *v) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2236 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2237 | ASSERT(mLinkResolved); |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2238 | const VariableLocation &uniformLocation = mState.getUniformLocations()[location]; |
| 2239 | const LinkedUniform &uniform = mState.getUniforms()[uniformLocation.index]; |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2240 | |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2241 | if (uniform.isSampler()) |
| 2242 | { |
| 2243 | *v = static_cast<GLfloat>(getSamplerUniformBinding(uniformLocation)); |
| 2244 | return; |
| 2245 | } |
| 2246 | |
| 2247 | const GLenum nativeType = gl::VariableComponentType(uniform.type); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2248 | if (nativeType == GL_FLOAT) |
| 2249 | { |
| 2250 | mProgram->getUniformfv(context, location, v); |
| 2251 | } |
| 2252 | else |
| 2253 | { |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2254 | getUniformInternal(context, v, location, nativeType, VariableComponentCount(uniform.type)); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2255 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2256 | } |
| 2257 | |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2258 | void Program::getUniformiv(const Context *context, GLint location, GLint *v) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2259 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2260 | ASSERT(mLinkResolved); |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2261 | const VariableLocation &uniformLocation = mState.getUniformLocations()[location]; |
| 2262 | const LinkedUniform &uniform = mState.getUniforms()[uniformLocation.index]; |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2263 | |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2264 | if (uniform.isSampler()) |
| 2265 | { |
| 2266 | *v = static_cast<GLint>(getSamplerUniformBinding(uniformLocation)); |
| 2267 | return; |
| 2268 | } |
| 2269 | |
| 2270 | const GLenum nativeType = gl::VariableComponentType(uniform.type); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2271 | if (nativeType == GL_INT || nativeType == GL_BOOL) |
| 2272 | { |
| 2273 | mProgram->getUniformiv(context, location, v); |
| 2274 | } |
| 2275 | else |
| 2276 | { |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2277 | getUniformInternal(context, v, location, nativeType, VariableComponentCount(uniform.type)); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2278 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2279 | } |
| 2280 | |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2281 | void Program::getUniformuiv(const Context *context, GLint location, GLuint *v) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2282 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2283 | ASSERT(mLinkResolved); |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2284 | const VariableLocation &uniformLocation = mState.getUniformLocations()[location]; |
| 2285 | const LinkedUniform &uniform = mState.getUniforms()[uniformLocation.index]; |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2286 | |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2287 | if (uniform.isSampler()) |
| 2288 | { |
| 2289 | *v = getSamplerUniformBinding(uniformLocation); |
| 2290 | return; |
| 2291 | } |
| 2292 | |
| 2293 | const GLenum nativeType = VariableComponentType(uniform.type); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2294 | if (nativeType == GL_UNSIGNED_INT) |
| 2295 | { |
| 2296 | mProgram->getUniformuiv(context, location, v); |
| 2297 | } |
| 2298 | else |
| 2299 | { |
Jamie Madill | 3bb2bbe | 2018-06-15 09:47:03 -0400 | [diff] [blame] | 2300 | getUniformInternal(context, v, location, nativeType, VariableComponentCount(uniform.type)); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 2301 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2302 | } |
| 2303 | |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 2304 | void Program::flagForDeletion() |
| 2305 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2306 | ASSERT(mLinkResolved); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 2307 | mDeleteStatus = true; |
| 2308 | } |
| 2309 | |
| 2310 | bool Program::isFlaggedForDeletion() const |
| 2311 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2312 | ASSERT(mLinkResolved); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 2313 | return mDeleteStatus; |
| 2314 | } |
daniel@transgaming.com | 86a7a13 | 2010-04-29 03:32:32 +0000 | [diff] [blame] | 2315 | |
Brandon Jones | 43a53e2 | 2014-08-28 16:23:22 -0700 | [diff] [blame] | 2316 | void Program::validate(const Caps &caps) |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 2317 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2318 | ASSERT(mLinkResolved); |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 2319 | mInfoLog.reset(); |
| 2320 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2321 | if (mLinked) |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 2322 | { |
Geoff Lang | 9201943 | 2017-11-20 13:09:34 -0500 | [diff] [blame] | 2323 | mValidated = ConvertToBool(mProgram->validate(caps, &mInfoLog)); |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 2324 | } |
| 2325 | else |
| 2326 | { |
Jamie Madill | f611316 | 2015-05-07 11:49:21 -0400 | [diff] [blame] | 2327 | mInfoLog << "Program has not been successfully linked."; |
apatrick@chromium.org | 253b8d2 | 2012-06-22 19:27:21 +0000 | [diff] [blame] | 2328 | } |
| 2329 | } |
| 2330 | |
Jamie Madill | cc73f24 | 2018-08-01 11:34:48 -0400 | [diff] [blame] | 2331 | bool Program::validateSamplersImpl(InfoLog *infoLog, const Caps &caps) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2332 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2333 | ASSERT(mLinkResolved); |
jchen10 | 7ae70d8 | 2018-07-06 13:47:01 +0800 | [diff] [blame] | 2334 | |
Jamie Madill | 3d3d2f2 | 2015-09-23 16:47:51 -0400 | [diff] [blame] | 2335 | // if any two active samplers in a program are of different types, but refer to the same |
| 2336 | // texture image unit, and this is the current program, then ValidateProgram will fail, and |
| 2337 | // DrawArrays and DrawElements will issue the INVALID_OPERATION error. |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 2338 | for (size_t textureUnit : mState.mActiveSamplersMask) |
Jamie Madill | 3d3d2f2 | 2015-09-23 16:47:51 -0400 | [diff] [blame] | 2339 | { |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 2340 | if (mState.mActiveSamplerTypes[textureUnit] == TextureType::InvalidEnum) |
Jamie Madill | 3d3d2f2 | 2015-09-23 16:47:51 -0400 | [diff] [blame] | 2341 | { |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 2342 | if (infoLog) |
Jamie Madill | 3d3d2f2 | 2015-09-23 16:47:51 -0400 | [diff] [blame] | 2343 | { |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 2344 | (*infoLog) << "Samplers of conflicting types refer to the same texture " |
| 2345 | "image unit (" |
| 2346 | << textureUnit << ")."; |
Jamie Madill | 3d3d2f2 | 2015-09-23 16:47:51 -0400 | [diff] [blame] | 2347 | } |
| 2348 | |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 2349 | mCachedValidateSamplersResult = false; |
| 2350 | return false; |
Jamie Madill | 3d3d2f2 | 2015-09-23 16:47:51 -0400 | [diff] [blame] | 2351 | } |
| 2352 | } |
| 2353 | |
| 2354 | mCachedValidateSamplersResult = true; |
| 2355 | return true; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2356 | } |
| 2357 | |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 2358 | bool Program::isValidated() const |
| 2359 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2360 | ASSERT(mLinkResolved); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2361 | return mValidated; |
| 2362 | } |
| 2363 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2364 | void Program::getActiveUniformBlockName(const GLuint blockIndex, |
| 2365 | GLsizei bufSize, |
| 2366 | GLsizei *length, |
| 2367 | GLchar *blockName) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2368 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2369 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2370 | GetInterfaceBlockName(blockIndex, mState.mUniformBlocks, bufSize, length, blockName); |
| 2371 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2372 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2373 | void Program::getActiveShaderStorageBlockName(const GLuint blockIndex, |
| 2374 | GLsizei bufSize, |
| 2375 | GLsizei *length, |
| 2376 | GLchar *blockName) const |
| 2377 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2378 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2379 | GetInterfaceBlockName(blockIndex, mState.mShaderStorageBlocks, bufSize, length, blockName); |
apatrick@chromium.org | e2a59bb | 2012-06-07 21:09:53 +0000 | [diff] [blame] | 2380 | } |
| 2381 | |
Qin Jiajia | 9bf5552 | 2018-01-29 13:56:23 +0800 | [diff] [blame] | 2382 | template <typename T> |
| 2383 | GLint Program::getActiveInterfaceBlockMaxNameLength(const std::vector<T> &resources) const |
shannonwoods@chromium.org | e684b58 | 2013-05-30 00:07:42 +0000 | [diff] [blame] | 2384 | { |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2385 | int maxLength = 0; |
| 2386 | |
| 2387 | if (mLinked) |
shannonwoods@chromium.org | e684b58 | 2013-05-30 00:07:42 +0000 | [diff] [blame] | 2388 | { |
Qin Jiajia | 9bf5552 | 2018-01-29 13:56:23 +0800 | [diff] [blame] | 2389 | for (const T &resource : resources) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2390 | { |
Qin Jiajia | 9bf5552 | 2018-01-29 13:56:23 +0800 | [diff] [blame] | 2391 | if (!resource.name.empty()) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2392 | { |
Qin Jiajia | 9bf5552 | 2018-01-29 13:56:23 +0800 | [diff] [blame] | 2393 | int length = static_cast<int>(resource.nameWithArrayIndex().length()); |
jchen10 | af713a2 | 2017-04-19 09:10:56 +0800 | [diff] [blame] | 2394 | maxLength = std::max(length + 1, maxLength); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2395 | } |
| 2396 | } |
shannonwoods@chromium.org | e684b58 | 2013-05-30 00:07:42 +0000 | [diff] [blame] | 2397 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2398 | |
| 2399 | return maxLength; |
| 2400 | } |
| 2401 | |
Qin Jiajia | 9bf5552 | 2018-01-29 13:56:23 +0800 | [diff] [blame] | 2402 | GLint Program::getActiveUniformBlockMaxNameLength() const |
| 2403 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2404 | ASSERT(mLinkResolved); |
Qin Jiajia | 9bf5552 | 2018-01-29 13:56:23 +0800 | [diff] [blame] | 2405 | return getActiveInterfaceBlockMaxNameLength(mState.mUniformBlocks); |
| 2406 | } |
| 2407 | |
| 2408 | GLint Program::getActiveShaderStorageBlockMaxNameLength() const |
| 2409 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2410 | ASSERT(mLinkResolved); |
Qin Jiajia | 9bf5552 | 2018-01-29 13:56:23 +0800 | [diff] [blame] | 2411 | return getActiveInterfaceBlockMaxNameLength(mState.mShaderStorageBlocks); |
| 2412 | } |
| 2413 | |
Geoff Lang | e1a2775 | 2015-10-05 13:16:04 -0400 | [diff] [blame] | 2414 | GLuint Program::getUniformBlockIndex(const std::string &name) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2415 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2416 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2417 | return GetInterfaceBlockIndex(mState.mUniformBlocks, name); |
| 2418 | } |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 2419 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2420 | GLuint Program::getShaderStorageBlockIndex(const std::string &name) const |
| 2421 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2422 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2423 | return GetInterfaceBlockIndex(mState.mShaderStorageBlocks, name); |
shannonwoods@chromium.org | e684b58 | 2013-05-30 00:07:42 +0000 | [diff] [blame] | 2424 | } |
| 2425 | |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 2426 | const InterfaceBlock &Program::getUniformBlockByIndex(GLuint index) const |
Gregoire Payen de La Garanderie | 68694e9 | 2015-03-24 14:03:37 +0000 | [diff] [blame] | 2427 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2428 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2429 | ASSERT(index < static_cast<GLuint>(mState.mUniformBlocks.size())); |
| 2430 | return mState.mUniformBlocks[index]; |
Gregoire Payen de La Garanderie | 68694e9 | 2015-03-24 14:03:37 +0000 | [diff] [blame] | 2431 | } |
| 2432 | |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2433 | const InterfaceBlock &Program::getShaderStorageBlockByIndex(GLuint index) const |
| 2434 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2435 | ASSERT(mLinkResolved); |
Jiajia Qin | 3a9090f | 2017-09-27 14:37:04 +0800 | [diff] [blame] | 2436 | ASSERT(index < static_cast<GLuint>(mState.mShaderStorageBlocks.size())); |
| 2437 | return mState.mShaderStorageBlocks[index]; |
| 2438 | } |
| 2439 | |
shannonwoods@chromium.org | 70eb1ea | 2013-05-30 00:07:20 +0000 | [diff] [blame] | 2440 | void Program::bindUniformBlock(GLuint uniformBlockIndex, GLuint uniformBlockBinding) |
| 2441 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2442 | ASSERT(mLinkResolved); |
jchen10 | 7a20b97 | 2017-06-13 14:25:26 +0800 | [diff] [blame] | 2443 | mState.mUniformBlocks[uniformBlockIndex].binding = uniformBlockBinding; |
Jamie Madill | a7d12dc | 2016-12-13 15:08:19 -0500 | [diff] [blame] | 2444 | mState.mActiveUniformBlockBindings.set(uniformBlockIndex, uniformBlockBinding != 0); |
Jamie Madill | 70aeda4 | 2018-08-20 12:17:40 -0400 | [diff] [blame] | 2445 | mDirtyBits.set(DIRTY_BIT_UNIFORM_BLOCK_BINDING_0 + uniformBlockIndex); |
shannonwoods@chromium.org | 70eb1ea | 2013-05-30 00:07:20 +0000 | [diff] [blame] | 2446 | } |
| 2447 | |
| 2448 | GLuint Program::getUniformBlockBinding(GLuint uniformBlockIndex) const |
| 2449 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2450 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2451 | return mState.getUniformBlockBinding(uniformBlockIndex); |
shannonwoods@chromium.org | 70eb1ea | 2013-05-30 00:07:20 +0000 | [diff] [blame] | 2452 | } |
| 2453 | |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 2454 | GLuint Program::getShaderStorageBlockBinding(GLuint shaderStorageBlockIndex) const |
| 2455 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2456 | ASSERT(mLinkResolved); |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 2457 | return mState.getShaderStorageBlockBinding(shaderStorageBlockIndex); |
| 2458 | } |
| 2459 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2460 | void Program::setTransformFeedbackVaryings(GLsizei count, |
| 2461 | const GLchar *const *varyings, |
| 2462 | GLenum bufferMode) |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2463 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2464 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2465 | mState.mTransformFeedbackVaryingNames.resize(count); |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2466 | for (GLsizei i = 0; i < count; i++) |
| 2467 | { |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2468 | mState.mTransformFeedbackVaryingNames[i] = varyings[i]; |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2469 | } |
| 2470 | |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2471 | mState.mTransformFeedbackBufferMode = bufferMode; |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2472 | } |
| 2473 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2474 | void Program::getTransformFeedbackVarying(GLuint index, |
| 2475 | GLsizei bufSize, |
| 2476 | GLsizei *length, |
| 2477 | GLsizei *size, |
| 2478 | GLenum *type, |
| 2479 | GLchar *name) const |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2480 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2481 | ASSERT(mLinkResolved); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2482 | if (mLinked) |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2483 | { |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 2484 | ASSERT(index < mState.mLinkedTransformFeedbackVaryings.size()); |
| 2485 | const auto &var = mState.mLinkedTransformFeedbackVaryings[index]; |
| 2486 | std::string varName = var.nameWithArrayIndex(); |
| 2487 | GLsizei lastNameIdx = std::min(bufSize - 1, static_cast<GLsizei>(varName.length())); |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2488 | if (length) |
| 2489 | { |
| 2490 | *length = lastNameIdx; |
| 2491 | } |
| 2492 | if (size) |
| 2493 | { |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 2494 | *size = var.size(); |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2495 | } |
| 2496 | if (type) |
| 2497 | { |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 2498 | *type = var.type; |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2499 | } |
| 2500 | if (name) |
| 2501 | { |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 2502 | memcpy(name, varName.c_str(), lastNameIdx); |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2503 | name[lastNameIdx] = '\0'; |
| 2504 | } |
| 2505 | } |
| 2506 | } |
| 2507 | |
Geoff Lang | 1b6edcb | 2014-02-03 14:27:56 -0500 | [diff] [blame] | 2508 | GLsizei Program::getTransformFeedbackVaryingCount() const |
| 2509 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2510 | ASSERT(mLinkResolved); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2511 | if (mLinked) |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2512 | { |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 2513 | return static_cast<GLsizei>(mState.mLinkedTransformFeedbackVaryings.size()); |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2514 | } |
| 2515 | else |
| 2516 | { |
| 2517 | return 0; |
| 2518 | } |
Geoff Lang | 1b6edcb | 2014-02-03 14:27:56 -0500 | [diff] [blame] | 2519 | } |
| 2520 | |
| 2521 | GLsizei Program::getTransformFeedbackVaryingMaxLength() const |
| 2522 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2523 | ASSERT(mLinkResolved); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2524 | if (mLinked) |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2525 | { |
| 2526 | GLsizei maxSize = 0; |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 2527 | for (const auto &var : mState.mLinkedTransformFeedbackVaryings) |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2528 | { |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 2529 | maxSize = |
| 2530 | std::max(maxSize, static_cast<GLsizei>(var.nameWithArrayIndex().length() + 1)); |
Geoff Lang | 48dcae7 | 2014-02-05 16:28:24 -0500 | [diff] [blame] | 2531 | } |
| 2532 | |
| 2533 | return maxSize; |
| 2534 | } |
| 2535 | else |
| 2536 | { |
| 2537 | return 0; |
| 2538 | } |
Geoff Lang | 1b6edcb | 2014-02-03 14:27:56 -0500 | [diff] [blame] | 2539 | } |
| 2540 | |
| 2541 | GLenum Program::getTransformFeedbackBufferMode() const |
| 2542 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2543 | ASSERT(mLinkResolved); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2544 | return mState.mTransformFeedbackBufferMode; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2545 | } |
| 2546 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2547 | bool Program::linkValidateShaders(InfoLog &infoLog) |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2548 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 2549 | Shader *vertexShader = mState.mAttachedShaders[ShaderType::Vertex]; |
| 2550 | Shader *fragmentShader = mState.mAttachedShaders[ShaderType::Fragment]; |
| 2551 | Shader *computeShader = mState.mAttachedShaders[ShaderType::Compute]; |
| 2552 | Shader *geometryShader = mState.mAttachedShaders[ShaderType::Geometry]; |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2553 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2554 | bool isComputeShaderAttached = (computeShader != nullptr); |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2555 | bool isGraphicsShaderAttached = |
| 2556 | (vertexShader != nullptr || fragmentShader != nullptr || geometryShader != nullptr); |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2557 | // Check whether we both have a compute and non-compute shaders attached. |
| 2558 | // If there are of both types attached, then linking should fail. |
| 2559 | // OpenGL ES 3.10, 7.3 Program Objects, under LinkProgram |
| 2560 | if (isComputeShaderAttached == true && isGraphicsShaderAttached == true) |
| 2561 | { |
| 2562 | infoLog << "Both compute and graphics shaders are attached to the same program."; |
| 2563 | return false; |
| 2564 | } |
| 2565 | |
| 2566 | if (computeShader) |
| 2567 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2568 | if (!computeShader->isCompiled()) |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2569 | { |
| 2570 | infoLog << "Attached compute shader is not compiled."; |
| 2571 | return false; |
| 2572 | } |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 2573 | ASSERT(computeShader->getType() == ShaderType::Compute); |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2574 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2575 | mState.mComputeShaderLocalSize = computeShader->getWorkGroupSize(); |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2576 | |
| 2577 | // GLSL ES 3.10, 4.4.1.1 Compute Shader Inputs |
| 2578 | // If the work group size is not specified, a link time error should occur. |
| 2579 | if (!mState.mComputeShaderLocalSize.isDeclared()) |
| 2580 | { |
| 2581 | infoLog << "Work group size is not specified."; |
| 2582 | return false; |
| 2583 | } |
| 2584 | } |
| 2585 | else |
| 2586 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2587 | if (!fragmentShader || !fragmentShader->isCompiled()) |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2588 | { |
| 2589 | infoLog << "No compiled fragment shader when at least one graphics shader is attached."; |
| 2590 | return false; |
| 2591 | } |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 2592 | ASSERT(fragmentShader->getType() == ShaderType::Fragment); |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2593 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2594 | if (!vertexShader || !vertexShader->isCompiled()) |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2595 | { |
| 2596 | infoLog << "No compiled vertex shader when at least one graphics shader is attached."; |
| 2597 | return false; |
| 2598 | } |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 2599 | ASSERT(vertexShader->getType() == ShaderType::Vertex); |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2600 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2601 | int vertexShaderVersion = vertexShader->getShaderVersion(); |
| 2602 | if (fragmentShader->getShaderVersion() != vertexShaderVersion) |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2603 | { |
| 2604 | infoLog << "Fragment shader version does not match vertex shader version."; |
| 2605 | return false; |
| 2606 | } |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2607 | |
| 2608 | if (geometryShader) |
| 2609 | { |
| 2610 | // [GL_EXT_geometry_shader] Chapter 7 |
| 2611 | // Linking can fail for a variety of reasons as specified in the OpenGL ES Shading |
| 2612 | // Language Specification, as well as any of the following reasons: |
| 2613 | // * One or more of the shader objects attached to <program> are not compiled |
| 2614 | // successfully. |
| 2615 | // * The shaders do not use the same shader language version. |
| 2616 | // * <program> contains objects to form a geometry shader, and |
| 2617 | // - <program> is not separable and contains no objects to form a vertex shader; or |
| 2618 | // - the input primitive type, output primitive type, or maximum output vertex count |
| 2619 | // is not specified in the compiled geometry shader object. |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2620 | if (!geometryShader->isCompiled()) |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2621 | { |
| 2622 | infoLog << "The attached geometry shader isn't compiled."; |
| 2623 | return false; |
| 2624 | } |
| 2625 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2626 | if (geometryShader->getShaderVersion() != vertexShaderVersion) |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2627 | { |
| 2628 | mInfoLog << "Geometry shader version does not match vertex shader version."; |
| 2629 | return false; |
| 2630 | } |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 2631 | ASSERT(geometryShader->getType() == ShaderType::Geometry); |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2632 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2633 | Optional<PrimitiveMode> inputPrimitive = |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2634 | geometryShader->getGeometryShaderInputPrimitiveType(); |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2635 | if (!inputPrimitive.valid()) |
| 2636 | { |
| 2637 | mInfoLog << "Input primitive type is not specified in the geometry shader."; |
| 2638 | return false; |
| 2639 | } |
| 2640 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2641 | Optional<PrimitiveMode> outputPrimitive = |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2642 | geometryShader->getGeometryShaderOutputPrimitiveType(); |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2643 | if (!outputPrimitive.valid()) |
| 2644 | { |
| 2645 | mInfoLog << "Output primitive type is not specified in the geometry shader."; |
| 2646 | return false; |
| 2647 | } |
| 2648 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2649 | Optional<GLint> maxVertices = geometryShader->getGeometryShaderMaxVertices(); |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2650 | if (!maxVertices.valid()) |
| 2651 | { |
| 2652 | mInfoLog << "'max_vertices' is not specified in the geometry shader."; |
| 2653 | return false; |
| 2654 | } |
| 2655 | |
| 2656 | mState.mGeometryShaderInputPrimitiveType = inputPrimitive.value(); |
| 2657 | mState.mGeometryShaderOutputPrimitiveType = outputPrimitive.value(); |
| 2658 | mState.mGeometryShaderMaxVertices = maxVertices.value(); |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2659 | mState.mGeometryShaderInvocations = geometryShader->getGeometryShaderInvocations(); |
Jiawei Shao | 4ed05da | 2018-02-02 14:26:15 +0800 | [diff] [blame] | 2660 | } |
Jiawei Shao | 7361860 | 2017-12-20 15:47:15 +0800 | [diff] [blame] | 2661 | } |
| 2662 | |
| 2663 | return true; |
| 2664 | } |
| 2665 | |
jchen10 | 910a3da | 2017-11-15 09:40:11 +0800 | [diff] [blame] | 2666 | GLuint Program::getTransformFeedbackVaryingResourceIndex(const GLchar *name) const |
| 2667 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2668 | ASSERT(mLinkResolved); |
jchen10 | 910a3da | 2017-11-15 09:40:11 +0800 | [diff] [blame] | 2669 | for (GLuint tfIndex = 0; tfIndex < mState.mLinkedTransformFeedbackVaryings.size(); ++tfIndex) |
| 2670 | { |
| 2671 | const auto &tf = mState.mLinkedTransformFeedbackVaryings[tfIndex]; |
| 2672 | if (tf.nameWithArrayIndex() == name) |
| 2673 | { |
| 2674 | return tfIndex; |
| 2675 | } |
| 2676 | } |
| 2677 | return GL_INVALID_INDEX; |
| 2678 | } |
| 2679 | |
| 2680 | const TransformFeedbackVarying &Program::getTransformFeedbackVaryingResource(GLuint index) const |
| 2681 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 2682 | ASSERT(mLinkResolved); |
jchen10 | 910a3da | 2017-11-15 09:40:11 +0800 | [diff] [blame] | 2683 | ASSERT(index < mState.mLinkedTransformFeedbackVaryings.size()); |
| 2684 | return mState.mLinkedTransformFeedbackVaryings[index]; |
| 2685 | } |
| 2686 | |
Austin Eng | 1bf18ce | 2018-10-19 15:34:02 -0700 | [diff] [blame] | 2687 | bool Program::hasDrawIDUniform() const |
| 2688 | { |
| 2689 | ASSERT(mLinkResolved); |
| 2690 | return mState.mDrawIDLocation >= 0; |
| 2691 | } |
| 2692 | |
| 2693 | void Program::setDrawIDUniform(GLint drawid) |
| 2694 | { |
| 2695 | ASSERT(mLinkResolved); |
| 2696 | ASSERT(mState.mDrawIDLocation >= 0); |
| 2697 | mProgram->setUniform1iv(mState.mDrawIDLocation, 1, &drawid); |
| 2698 | } |
| 2699 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2700 | bool Program::linkVaryings(InfoLog &infoLog) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2701 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 2702 | Shader *previousShader = nullptr; |
| 2703 | for (ShaderType shaderType : kAllGraphicsShaderTypes) |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2704 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 2705 | Shader *currentShader = mState.mAttachedShaders[shaderType]; |
| 2706 | if (!currentShader) |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2707 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 2708 | continue; |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2709 | } |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 2710 | |
| 2711 | if (previousShader) |
| 2712 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2713 | if (!linkValidateShaderInterfaceMatching(previousShader, currentShader, infoLog)) |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 2714 | { |
| 2715 | return false; |
| 2716 | } |
| 2717 | } |
| 2718 | previousShader = currentShader; |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2719 | } |
| 2720 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2721 | if (!linkValidateBuiltInVaryings(infoLog)) |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2722 | { |
| 2723 | return false; |
| 2724 | } |
| 2725 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2726 | if (!linkValidateFragmentInputBindings(infoLog)) |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2727 | { |
| 2728 | return false; |
| 2729 | } |
| 2730 | |
| 2731 | return true; |
| 2732 | } |
| 2733 | |
| 2734 | // [OpenGL ES 3.1] Chapter 7.4.1 "Shader Interface Matchining" Page 91 |
| 2735 | // TODO(jiawei.shao@intel.com): add validation on input/output blocks matching |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2736 | bool Program::linkValidateShaderInterfaceMatching(gl::Shader *generatingShader, |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2737 | gl::Shader *consumingShader, |
| 2738 | gl::InfoLog &infoLog) const |
| 2739 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2740 | ASSERT(generatingShader->getShaderVersion() == consumingShader->getShaderVersion()); |
Yuly Novikov | a1f6dc9 | 2016-06-15 23:27:04 -0400 | [diff] [blame] | 2741 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2742 | const std::vector<sh::Varying> &outputVaryings = generatingShader->getOutputVaryings(); |
| 2743 | const std::vector<sh::Varying> &inputVaryings = consumingShader->getInputVaryings(); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2744 | |
Jiawei Shao | 385b3e0 | 2018-03-21 09:43:28 +0800 | [diff] [blame] | 2745 | bool validateGeometryShaderInputs = consumingShader->getType() == ShaderType::Geometry; |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2746 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2747 | for (const sh::Varying &input : inputVaryings) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2748 | { |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2749 | bool matched = false; |
| 2750 | |
| 2751 | // Built-in varyings obey special rules |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2752 | if (input.isBuiltIn()) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2753 | { |
| 2754 | continue; |
| 2755 | } |
| 2756 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2757 | for (const sh::Varying &output : outputVaryings) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2758 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2759 | if (input.name == output.name) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2760 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2761 | ASSERT(!output.isBuiltIn()); |
| 2762 | |
| 2763 | std::string mismatchedStructFieldName; |
| 2764 | LinkMismatchError linkError = |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2765 | LinkValidateVaryings(output, input, generatingShader->getShaderVersion(), |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2766 | validateGeometryShaderInputs, &mismatchedStructFieldName); |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2767 | if (linkError != LinkMismatchError::NO_MISMATCH) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2768 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2769 | LogLinkMismatch(infoLog, input.name, "varying", linkError, |
| 2770 | mismatchedStructFieldName, generatingShader->getType(), |
| 2771 | consumingShader->getType()); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2772 | return false; |
| 2773 | } |
| 2774 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2775 | matched = true; |
| 2776 | break; |
| 2777 | } |
| 2778 | } |
| 2779 | |
Olli Etuaho | 107c724 | 2018-03-20 15:45:35 +0200 | [diff] [blame] | 2780 | // We permit unmatched, unreferenced varyings. Note that this specifically depends on |
| 2781 | // whether the input is statically used - a statically used input should fail this test even |
| 2782 | // if it is not active. GLSL ES 3.00.6 section 4.3.10. |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2783 | if (!matched && input.staticUse) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2784 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2785 | infoLog << GetShaderTypeString(consumingShader->getType()) << " varying " << input.name |
| 2786 | << " does not match any " << GetShaderTypeString(generatingShader->getType()) |
| 2787 | << " varying"; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2788 | return false; |
| 2789 | } |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2790 | } |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2791 | |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2792 | // TODO(jmadill): verify no unmatched output varyings? |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2793 | |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2794 | return true; |
| 2795 | } |
| 2796 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2797 | bool Program::linkValidateFragmentInputBindings(gl::InfoLog &infoLog) const |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2798 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 2799 | ASSERT(mState.mAttachedShaders[ShaderType::Fragment]); |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2800 | |
| 2801 | std::map<GLuint, std::string> staticFragmentInputLocations; |
| 2802 | |
| 2803 | const std::vector<sh::Varying> &fragmentInputVaryings = |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2804 | mState.mAttachedShaders[ShaderType::Fragment]->getInputVaryings(); |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2805 | for (const sh::Varying &input : fragmentInputVaryings) |
| 2806 | { |
| 2807 | if (input.isBuiltIn() || !input.staticUse) |
| 2808 | { |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2809 | continue; |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 2810 | } |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2811 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2812 | const auto inputBinding = mFragmentInputBindings.getBinding(input.name); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2813 | if (inputBinding == -1) |
| 2814 | continue; |
| 2815 | |
| 2816 | const auto it = staticFragmentInputLocations.find(inputBinding); |
| 2817 | if (it == std::end(staticFragmentInputLocations)) |
| 2818 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2819 | staticFragmentInputLocations.insert(std::make_pair(inputBinding, input.name)); |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2820 | } |
| 2821 | else |
| 2822 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 2823 | infoLog << "Binding for fragment input " << input.name << " conflicts with " |
Sami Väisänen | 46eaa94 | 2016-06-29 10:26:37 +0300 | [diff] [blame] | 2824 | << it->second; |
| 2825 | return false; |
| 2826 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2827 | } |
| 2828 | |
| 2829 | return true; |
| 2830 | } |
| 2831 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2832 | bool Program::linkUniforms(const Caps &caps, |
Jamie Madill | bd044ed | 2017-06-05 12:59:21 -0400 | [diff] [blame] | 2833 | InfoLog &infoLog, |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 2834 | const ProgramBindings &uniformLocationBindings, |
Luc Ferron | e17b5ba | 2018-06-04 14:28:58 -0400 | [diff] [blame] | 2835 | GLuint *combinedImageUniformsCount, |
| 2836 | std::vector<UnusedUniform> *unusedUniforms) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 2837 | { |
Olli Etuaho | b78707c | 2017-03-09 15:03:11 +0000 | [diff] [blame] | 2838 | UniformLinker linker(mState); |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2839 | if (!linker.link(caps, infoLog, uniformLocationBindings)) |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 2840 | { |
| 2841 | return false; |
| 2842 | } |
| 2843 | |
Luc Ferron | e17b5ba | 2018-06-04 14:28:58 -0400 | [diff] [blame] | 2844 | linker.getResults(&mState.mUniforms, unusedUniforms, &mState.mUniformLocations); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 2845 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 2846 | linkSamplerAndImageBindings(combinedImageUniformsCount); |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2847 | |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 2848 | if (!linkAtomicCounterBuffers()) |
| 2849 | { |
| 2850 | return false; |
| 2851 | } |
| 2852 | |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2853 | return true; |
| 2854 | } |
| 2855 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 2856 | void Program::linkSamplerAndImageBindings(GLuint *combinedImageUniforms) |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2857 | { |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 2858 | ASSERT(combinedImageUniforms); |
| 2859 | |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 2860 | unsigned int high = static_cast<unsigned int>(mState.mUniforms.size()); |
| 2861 | unsigned int low = high; |
| 2862 | |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 2863 | for (auto counterIter = mState.mUniforms.rbegin(); |
| 2864 | counterIter != mState.mUniforms.rend() && counterIter->isAtomicCounter(); ++counterIter) |
| 2865 | { |
| 2866 | --low; |
| 2867 | } |
| 2868 | |
| 2869 | mState.mAtomicCounterUniformRange = RangeUI(low, high); |
| 2870 | |
| 2871 | high = low; |
| 2872 | |
Xinghua Cao | 65ec0b2 | 2017-03-28 16:10:52 +0800 | [diff] [blame] | 2873 | for (auto imageIter = mState.mUniforms.rbegin(); |
| 2874 | imageIter != mState.mUniforms.rend() && imageIter->isImage(); ++imageIter) |
| 2875 | { |
| 2876 | --low; |
| 2877 | } |
| 2878 | |
| 2879 | mState.mImageUniformRange = RangeUI(low, high); |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 2880 | *combinedImageUniforms = 0u; |
Xinghua Cao | 65ec0b2 | 2017-03-28 16:10:52 +0800 | [diff] [blame] | 2881 | // If uniform is a image type, insert it into the mImageBindings array. |
| 2882 | for (unsigned int imageIndex : mState.mImageUniformRange) |
| 2883 | { |
Xinghua Cao | 0328b57 | 2017-06-26 15:51:36 +0800 | [diff] [blame] | 2884 | // ES3.1 (section 7.6.1) and GLSL ES3.1 (section 4.4.5), Uniform*i{v} commands |
| 2885 | // cannot load values into a uniform defined as an image. if declare without a |
| 2886 | // binding qualifier, any uniform image variable (include all elements of |
| 2887 | // unbound image array) shoud be bound to unit zero. |
Xinghua Cao | 65ec0b2 | 2017-03-28 16:10:52 +0800 | [diff] [blame] | 2888 | auto &imageUniform = mState.mUniforms[imageIndex]; |
| 2889 | if (imageUniform.binding == -1) |
| 2890 | { |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 2891 | mState.mImageBindings.emplace_back( |
| 2892 | ImageBinding(imageUniform.getBasicTypeElementCount())); |
Xinghua Cao | 65ec0b2 | 2017-03-28 16:10:52 +0800 | [diff] [blame] | 2893 | } |
Xinghua Cao | 0328b57 | 2017-06-26 15:51:36 +0800 | [diff] [blame] | 2894 | else |
| 2895 | { |
| 2896 | mState.mImageBindings.emplace_back( |
Qin Jiajia | 47f6dd0 | 2018-08-10 13:36:32 +0800 | [diff] [blame] | 2897 | ImageBinding(imageUniform.binding, imageUniform.getBasicTypeElementCount(), false)); |
Xinghua Cao | 0328b57 | 2017-06-26 15:51:36 +0800 | [diff] [blame] | 2898 | } |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 2899 | |
| 2900 | GLuint arraySize = imageUniform.isArray() ? imageUniform.arraySizes[0] : 1u; |
| 2901 | *combinedImageUniforms += imageUniform.activeShaderCount() * arraySize; |
Xinghua Cao | 65ec0b2 | 2017-03-28 16:10:52 +0800 | [diff] [blame] | 2902 | } |
| 2903 | |
| 2904 | high = low; |
| 2905 | |
| 2906 | for (auto samplerIter = mState.mUniforms.rbegin() + mState.mImageUniformRange.length(); |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 2907 | samplerIter != mState.mUniforms.rend() && samplerIter->isSampler(); ++samplerIter) |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2908 | { |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 2909 | --low; |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2910 | } |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 2911 | |
| 2912 | mState.mSamplerUniformRange = RangeUI(low, high); |
| 2913 | |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2914 | // If uniform is a sampler type, insert it into the mSamplerBindings array. |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 2915 | for (unsigned int samplerIndex : mState.mSamplerUniformRange) |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2916 | { |
| 2917 | const auto &samplerUniform = mState.mUniforms[samplerIndex]; |
Corentin Wallez | f0e89be | 2017-11-08 14:00:32 -0800 | [diff] [blame] | 2918 | TextureType textureType = SamplerTypeToTextureType(samplerUniform.type); |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 2919 | unsigned int elementCount = samplerUniform.getBasicTypeElementCount(); |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 2920 | SamplerFormat format = samplerUniform.typeInfo->samplerFormat; |
| 2921 | mState.mSamplerBindings.emplace_back(textureType, format, elementCount, false); |
Olli Etuaho | 6ca2b65 | 2017-02-19 18:05:10 +0000 | [diff] [blame] | 2922 | } |
| 2923 | } |
| 2924 | |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 2925 | bool Program::linkAtomicCounterBuffers() |
| 2926 | { |
| 2927 | for (unsigned int index : mState.mAtomicCounterUniformRange) |
| 2928 | { |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2929 | auto &uniform = mState.mUniforms[index]; |
Jiajia Qin | 94f1e89 | 2017-11-20 12:14:32 +0800 | [diff] [blame] | 2930 | uniform.blockInfo.offset = uniform.offset; |
| 2931 | uniform.blockInfo.arrayStride = (uniform.isArray() ? 4 : 0); |
| 2932 | uniform.blockInfo.matrixStride = 0; |
| 2933 | uniform.blockInfo.isRowMajorMatrix = false; |
| 2934 | |
Jamie Madill | 493f957 | 2018-05-24 19:52:15 -0400 | [diff] [blame] | 2935 | bool found = false; |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 2936 | for (unsigned int bufferIndex = 0; bufferIndex < mState.mAtomicCounterBuffers.size(); |
| 2937 | ++bufferIndex) |
| 2938 | { |
| 2939 | auto &buffer = mState.mAtomicCounterBuffers[bufferIndex]; |
| 2940 | if (buffer.binding == uniform.binding) |
| 2941 | { |
| 2942 | buffer.memberIndexes.push_back(index); |
| 2943 | uniform.bufferIndex = bufferIndex; |
| 2944 | found = true; |
jchen10 | 58f67be | 2017-10-27 08:59:27 +0800 | [diff] [blame] | 2945 | buffer.unionReferencesWith(uniform); |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 2946 | break; |
| 2947 | } |
| 2948 | } |
| 2949 | if (!found) |
| 2950 | { |
| 2951 | AtomicCounterBuffer atomicCounterBuffer; |
| 2952 | atomicCounterBuffer.binding = uniform.binding; |
| 2953 | atomicCounterBuffer.memberIndexes.push_back(index); |
jchen10 | 58f67be | 2017-10-27 08:59:27 +0800 | [diff] [blame] | 2954 | atomicCounterBuffer.unionReferencesWith(uniform); |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 2955 | mState.mAtomicCounterBuffers.push_back(atomicCounterBuffer); |
| 2956 | uniform.bufferIndex = static_cast<int>(mState.mAtomicCounterBuffers.size() - 1); |
| 2957 | } |
| 2958 | } |
| 2959 | // TODO(jie.a.chen@intel.com): Count each atomic counter buffer to validate against |
Jiawei Shao | 0d88ec9 | 2018-02-27 16:25:31 +0800 | [diff] [blame] | 2960 | // gl_Max[Vertex|Fragment|Compute|Geometry|Combined]AtomicCounterBuffers. |
jchen10 | eaef1e5 | 2017-06-13 10:44:11 +0800 | [diff] [blame] | 2961 | |
| 2962 | return true; |
| 2963 | } |
| 2964 | |
Jamie Madill | eb979bf | 2016-11-15 12:28:46 -0500 | [diff] [blame] | 2965 | // Assigns locations to all attributes from the bindings and program locations. |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2966 | bool Program::linkAttributes(const Caps &caps, InfoLog &infoLog) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2967 | { |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 2968 | Shader *vertexShader = mState.getAttachedShader(ShaderType::Vertex); |
Jamie Madill | eb979bf | 2016-11-15 12:28:46 -0500 | [diff] [blame] | 2969 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2970 | int shaderVersion = vertexShader->getShaderVersion(); |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 2971 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2972 | unsigned int usedLocations = 0; |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 2973 | if (shaderVersion >= 300) |
| 2974 | { |
| 2975 | // In GLSL ES 3.00.6, aliasing checks should be done with all declared attributes - see GLSL |
| 2976 | // ES 3.00.6 section 12.46. Inactive attributes will be pruned after aliasing checks. |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2977 | mState.mAttributes = vertexShader->getAllAttributes(); |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 2978 | } |
| 2979 | else |
| 2980 | { |
| 2981 | // In GLSL ES 1.00.17 we only do aliasing checks for active attributes. |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2982 | mState.mAttributes = vertexShader->getActiveAttributes(); |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 2983 | } |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 2984 | GLuint maxAttribs = caps.maxVertexAttributes; |
Jamie Madill | 3da79b7 | 2015-04-27 11:09:17 -0400 | [diff] [blame] | 2985 | |
| 2986 | // TODO(jmadill): handle aliasing robustly |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2987 | if (mState.mAttributes.size() > maxAttribs) |
Jamie Madill | 3da79b7 | 2015-04-27 11:09:17 -0400 | [diff] [blame] | 2988 | { |
Jamie Madill | f611316 | 2015-05-07 11:49:21 -0400 | [diff] [blame] | 2989 | infoLog << "Too many vertex attributes."; |
Jamie Madill | 3da79b7 | 2015-04-27 11:09:17 -0400 | [diff] [blame] | 2990 | return false; |
| 2991 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 2992 | |
Jamie Madill | dfde6ab | 2016-06-09 07:07:18 -0700 | [diff] [blame] | 2993 | std::vector<sh::Attribute *> usedAttribMap(maxAttribs, nullptr); |
Jamie Madill | 4e10722 | 2015-08-24 14:12:17 +0000 | [diff] [blame] | 2994 | |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 2995 | // Assign locations to attributes that have a binding location and check for attribute aliasing. |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 2996 | for (sh::Attribute &attribute : mState.mAttributes) |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 2997 | { |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 2998 | // GLSL ES 3.10 January 2016 section 4.3.4: Vertex shader inputs can't be arrays or |
| 2999 | // structures, so we don't need to worry about adjusting their names or generating entries |
| 3000 | // for each member/element (unlike uniforms for example). |
| 3001 | ASSERT(!attribute.isArray() && !attribute.isStruct()); |
| 3002 | |
Jamie Madill | eb979bf | 2016-11-15 12:28:46 -0500 | [diff] [blame] | 3003 | int bindingLocation = mAttributeBindings.getBinding(attribute.name); |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3004 | if (attribute.location == -1 && bindingLocation != -1) |
Jamie Madill | 2d77318 | 2015-08-18 10:27:28 -0400 | [diff] [blame] | 3005 | { |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3006 | attribute.location = bindingLocation; |
| 3007 | } |
| 3008 | |
| 3009 | if (attribute.location != -1) |
| 3010 | { |
| 3011 | // Location is set by glBindAttribLocation or by location layout qualifier |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3012 | const int regs = VariableRegisterCount(attribute.type); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3013 | |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3014 | if (static_cast<GLuint>(regs + attribute.location) > maxAttribs) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3015 | { |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 3016 | infoLog << "Attribute (" << attribute.name << ") at location " << attribute.location |
| 3017 | << " is too big to fit"; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3018 | |
| 3019 | return false; |
| 3020 | } |
| 3021 | |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3022 | for (int reg = 0; reg < regs; reg++) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3023 | { |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3024 | const int regLocation = attribute.location + reg; |
| 3025 | sh::ShaderVariable *linkedAttribute = usedAttribMap[regLocation]; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3026 | |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 3027 | // In GLSL ES 3.00.6 and in WebGL, attribute aliasing produces a link error. |
| 3028 | // In non-WebGL GLSL ES 1.00.17, attribute aliasing is allowed with some |
| 3029 | // restrictions - see GLSL ES 1.00.17 section 2.10.4, but ANGLE currently has a bug. |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3030 | if (linkedAttribute) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3031 | { |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3032 | // TODO(jmadill): fix aliasing on ES2 |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 3033 | // if (shaderVersion >= 300 && !webgl) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3034 | { |
Jamie Madill | 5c6b7bf | 2015-08-17 12:53:35 -0400 | [diff] [blame] | 3035 | infoLog << "Attribute '" << attribute.name << "' aliases attribute '" |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3036 | << linkedAttribute->name << "' at location " << regLocation; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3037 | return false; |
| 3038 | } |
| 3039 | } |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3040 | else |
| 3041 | { |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3042 | usedAttribMap[regLocation] = &attribute; |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3043 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3044 | |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3045 | usedLocations |= 1 << regLocation; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3046 | } |
| 3047 | } |
| 3048 | } |
| 3049 | |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 3050 | // Assign locations to attributes that don't have a binding location. |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 3051 | for (sh::Attribute &attribute : mState.mAttributes) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3052 | { |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3053 | // Not set by glBindAttribLocation or by location layout qualifier |
| 3054 | if (attribute.location == -1) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3055 | { |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3056 | int regs = VariableRegisterCount(attribute.type); |
| 3057 | int availableIndex = AllocateFirstFreeBits(&usedLocations, regs, maxAttribs); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3058 | |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3059 | if (availableIndex == -1 || static_cast<GLuint>(availableIndex + regs) > maxAttribs) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3060 | { |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 3061 | infoLog << "Too many attributes (" << attribute.name << ")"; |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3062 | return false; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3063 | } |
| 3064 | |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3065 | attribute.location = availableIndex; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3066 | } |
| 3067 | } |
| 3068 | |
Brandon Jones | c405ae7 | 2017-12-06 14:15:03 -0800 | [diff] [blame] | 3069 | ASSERT(mState.mAttributesTypeMask.none()); |
| 3070 | ASSERT(mState.mAttributesMask.none()); |
| 3071 | |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 3072 | // Prune inactive attributes. This step is only needed on shaderVersion >= 300 since on earlier |
| 3073 | // shader versions we're only processing active attributes to begin with. |
| 3074 | if (shaderVersion >= 300) |
| 3075 | { |
| 3076 | for (auto attributeIter = mState.mAttributes.begin(); |
| 3077 | attributeIter != mState.mAttributes.end();) |
| 3078 | { |
| 3079 | if (attributeIter->active) |
| 3080 | { |
| 3081 | ++attributeIter; |
| 3082 | } |
| 3083 | else |
| 3084 | { |
| 3085 | attributeIter = mState.mAttributes.erase(attributeIter); |
| 3086 | } |
| 3087 | } |
| 3088 | } |
| 3089 | |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 3090 | for (const sh::Attribute &attribute : mState.mAttributes) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3091 | { |
Olli Etuaho | ebd6e2d | 2018-03-23 17:07:55 +0200 | [diff] [blame] | 3092 | ASSERT(attribute.active); |
Jamie Madill | 63805b4 | 2015-08-25 13:17:39 -0400 | [diff] [blame] | 3093 | ASSERT(attribute.location != -1); |
Jamie Madill | bd159f0 | 2017-10-09 19:39:06 -0400 | [diff] [blame] | 3094 | unsigned int regs = static_cast<unsigned int>(VariableRegisterCount(attribute.type)); |
Jamie Madill | c349ec0 | 2015-08-21 16:53:12 -0400 | [diff] [blame] | 3095 | |
Jamie Madill | bd159f0 | 2017-10-09 19:39:06 -0400 | [diff] [blame] | 3096 | for (unsigned int r = 0; r < regs; r++) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3097 | { |
Jamie Madill | bd159f0 | 2017-10-09 19:39:06 -0400 | [diff] [blame] | 3098 | unsigned int location = static_cast<unsigned int>(attribute.location) + r; |
| 3099 | mState.mActiveAttribLocationsMask.set(location); |
| 3100 | mState.mMaxActiveAttribLocation = |
| 3101 | std::max(mState.mMaxActiveAttribLocation, location + 1); |
Brandon Jones | c405ae7 | 2017-12-06 14:15:03 -0800 | [diff] [blame] | 3102 | |
| 3103 | // gl_VertexID and gl_InstanceID are active attributes but don't have a bound attribute. |
| 3104 | if (!attribute.isBuiltIn()) |
| 3105 | { |
| 3106 | mState.mAttributesTypeMask.setIndex(VariableComponentType(attribute.type), |
| 3107 | location); |
| 3108 | mState.mAttributesMask.set(location); |
| 3109 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3110 | } |
| 3111 | } |
| 3112 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3113 | return true; |
| 3114 | } |
| 3115 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3116 | bool Program::linkInterfaceBlocks(const Caps &caps, |
| 3117 | const Version &version, |
| 3118 | bool webglCompatibility, |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3119 | InfoLog &infoLog, |
| 3120 | GLuint *combinedShaderStorageBlocksCount) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 3121 | { |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3122 | ASSERT(combinedShaderStorageBlocksCount); |
| 3123 | |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3124 | GLuint combinedUniformBlocksCount = 0u; |
| 3125 | GLuint numShadersHasUniformBlocks = 0u; |
| 3126 | ShaderMap<const std::vector<sh::InterfaceBlock> *> allShaderUniformBlocks = {}; |
| 3127 | for (ShaderType shaderType : AllShaderTypes()) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 3128 | { |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 3129 | Shader *shader = mState.mAttachedShaders[shaderType]; |
| 3130 | if (!shader) |
| 3131 | { |
| 3132 | continue; |
| 3133 | } |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 3134 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3135 | const auto &uniformBlocks = shader->getUniformBlocks(); |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3136 | if (!uniformBlocks.empty()) |
Jiawei Shao | 427071e | 2018-03-19 09:21:37 +0800 | [diff] [blame] | 3137 | { |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3138 | if (!ValidateInterfaceBlocksCount( |
| 3139 | caps.maxShaderUniformBlocks[shaderType], uniformBlocks, shaderType, |
| 3140 | sh::BlockType::BLOCK_UNIFORM, &combinedUniformBlocksCount, infoLog)) |
| 3141 | { |
| 3142 | return false; |
| 3143 | } |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 3144 | |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3145 | allShaderUniformBlocks[shaderType] = &uniformBlocks; |
| 3146 | ++numShadersHasUniformBlocks; |
| 3147 | } |
Jiawei Shao | 427071e | 2018-03-19 09:21:37 +0800 | [diff] [blame] | 3148 | } |
| 3149 | |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 3150 | if (combinedUniformBlocksCount > caps.maxCombinedUniformBlocks) |
| 3151 | { |
| 3152 | infoLog << "The sum of the number of active uniform blocks exceeds " |
| 3153 | "MAX_COMBINED_UNIFORM_BLOCKS (" |
| 3154 | << caps.maxCombinedUniformBlocks << ")."; |
| 3155 | return false; |
| 3156 | } |
| 3157 | |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3158 | if (!ValidateInterfaceBlocksMatch(numShadersHasUniformBlocks, allShaderUniformBlocks, infoLog, |
| 3159 | webglCompatibility)) |
Martin Radev | 4c4c8e7 | 2016-08-04 12:25:34 +0300 | [diff] [blame] | 3160 | { |
| 3161 | return false; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3162 | } |
Jamie Madill | e473dee | 2015-08-18 14:49:01 -0400 | [diff] [blame] | 3163 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3164 | if (version >= Version(3, 1)) |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 3165 | { |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3166 | *combinedShaderStorageBlocksCount = 0u; |
| 3167 | GLuint numShadersHasShaderStorageBlocks = 0u; |
| 3168 | ShaderMap<const std::vector<sh::InterfaceBlock> *> allShaderStorageBlocks = {}; |
| 3169 | for (ShaderType shaderType : AllShaderTypes()) |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 3170 | { |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 3171 | Shader *shader = mState.mAttachedShaders[shaderType]; |
| 3172 | if (!shader) |
| 3173 | { |
| 3174 | continue; |
| 3175 | } |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 3176 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3177 | const auto &shaderStorageBlocks = shader->getShaderStorageBlocks(); |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3178 | if (!shaderStorageBlocks.empty()) |
Jiawei Shao | 427071e | 2018-03-19 09:21:37 +0800 | [diff] [blame] | 3179 | { |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3180 | if (!ValidateInterfaceBlocksCount( |
| 3181 | caps.maxShaderStorageBlocks[shaderType], shaderStorageBlocks, shaderType, |
| 3182 | sh::BlockType::BLOCK_BUFFER, combinedShaderStorageBlocksCount, infoLog)) |
| 3183 | { |
| 3184 | return false; |
| 3185 | } |
Jiawei Shao | 40786bd | 2018-04-18 13:58:57 +0800 | [diff] [blame] | 3186 | |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3187 | allShaderStorageBlocks[shaderType] = &shaderStorageBlocks; |
| 3188 | ++numShadersHasShaderStorageBlocks; |
| 3189 | } |
Jiawei Shao | 427071e | 2018-03-19 09:21:37 +0800 | [diff] [blame] | 3190 | } |
| 3191 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3192 | if (*combinedShaderStorageBlocksCount > caps.maxCombinedShaderStorageBlocks) |
Jiawei Shao | bb3255b | 2018-04-27 09:45:18 +0800 | [diff] [blame] | 3193 | { |
| 3194 | infoLog << "The sum of the number of active shader storage blocks exceeds " |
| 3195 | "MAX_COMBINED_SHADER_STORAGE_BLOCKS (" |
| 3196 | << caps.maxCombinedShaderStorageBlocks << ")."; |
| 3197 | return false; |
| 3198 | } |
| 3199 | |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3200 | if (!ValidateInterfaceBlocksMatch(numShadersHasShaderStorageBlocks, allShaderStorageBlocks, |
| 3201 | infoLog, webglCompatibility)) |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 3202 | { |
| 3203 | return false; |
| 3204 | } |
| 3205 | } |
Jiawei Shao | 54aafe5 | 2018-04-27 14:54:57 +0800 | [diff] [blame] | 3206 | |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3207 | return true; |
| 3208 | } |
| 3209 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3210 | LinkMismatchError Program::LinkValidateVariablesBase(const sh::ShaderVariable &variable1, |
| 3211 | const sh::ShaderVariable &variable2, |
| 3212 | bool validatePrecision, |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 3213 | bool validateArraySize, |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3214 | std::string *mismatchedStructOrBlockMemberName) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3215 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3216 | if (variable1.type != variable2.type) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3217 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3218 | return LinkMismatchError::TYPE_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3219 | } |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 3220 | if (validateArraySize && variable1.arraySizes != variable2.arraySizes) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3221 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3222 | return LinkMismatchError::ARRAY_SIZE_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3223 | } |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3224 | if (validatePrecision && variable1.precision != variable2.precision) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3225 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3226 | return LinkMismatchError::PRECISION_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3227 | } |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3228 | if (variable1.structName != variable2.structName) |
Geoff Lang | bb1e750 | 2017-06-05 16:40:09 -0400 | [diff] [blame] | 3229 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3230 | return LinkMismatchError::STRUCT_NAME_MISMATCH; |
Geoff Lang | bb1e750 | 2017-06-05 16:40:09 -0400 | [diff] [blame] | 3231 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3232 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3233 | if (variable1.fields.size() != variable2.fields.size()) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3234 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3235 | return LinkMismatchError::FIELD_NUMBER_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3236 | } |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3237 | const unsigned int numMembers = static_cast<unsigned int>(variable1.fields.size()); |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3238 | for (unsigned int memberIndex = 0; memberIndex < numMembers; memberIndex++) |
| 3239 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3240 | const sh::ShaderVariable &member1 = variable1.fields[memberIndex]; |
| 3241 | const sh::ShaderVariable &member2 = variable2.fields[memberIndex]; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3242 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3243 | if (member1.name != member2.name) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3244 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3245 | return LinkMismatchError::FIELD_NAME_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3246 | } |
| 3247 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3248 | LinkMismatchError linkErrorOnField = LinkValidateVariablesBase( |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 3249 | member1, member2, validatePrecision, true, mismatchedStructOrBlockMemberName); |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3250 | if (linkErrorOnField != LinkMismatchError::NO_MISMATCH) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3251 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3252 | AddParentPrefix(member1.name, mismatchedStructOrBlockMemberName); |
| 3253 | return linkErrorOnField; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3254 | } |
| 3255 | } |
| 3256 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3257 | return LinkMismatchError::NO_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3258 | } |
| 3259 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3260 | LinkMismatchError Program::LinkValidateVaryings(const sh::Varying &outputVarying, |
| 3261 | const sh::Varying &inputVarying, |
| 3262 | int shaderVersion, |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 3263 | bool validateGeometryShaderInputVarying, |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3264 | std::string *mismatchedStructFieldName) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3265 | { |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 3266 | if (validateGeometryShaderInputVarying) |
| 3267 | { |
| 3268 | // [GL_EXT_geometry_shader] Section 11.1gs.4.3: |
| 3269 | // The OpenGL ES Shading Language doesn't support multi-dimensional arrays as shader inputs |
| 3270 | // or outputs. |
| 3271 | ASSERT(inputVarying.arraySizes.size() == 1u); |
| 3272 | |
| 3273 | // Geometry shader input varyings are not treated as arrays, so a vertex array output |
| 3274 | // varying cannot match a geometry shader input varying. |
| 3275 | // [GL_EXT_geometry_shader] Section 7.4.1: |
| 3276 | // Geometry shader per-vertex input variables and blocks are required to be declared as |
| 3277 | // arrays, with each element representing input or output values for a single vertex of a |
| 3278 | // multi-vertex primitive. For the purposes of interface matching, such variables and blocks |
| 3279 | // are treated as though they were not declared as arrays. |
| 3280 | if (outputVarying.isArray()) |
| 3281 | { |
| 3282 | return LinkMismatchError::ARRAY_SIZE_MISMATCH; |
| 3283 | } |
| 3284 | } |
| 3285 | |
| 3286 | // Skip the validation on the array sizes between a vertex output varying and a geometry input |
| 3287 | // varying as it has been done before. |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3288 | LinkMismatchError linkError = |
Jiawei Shao | d063aff | 2018-02-22 10:19:09 +0800 | [diff] [blame] | 3289 | LinkValidateVariablesBase(outputVarying, inputVarying, false, |
| 3290 | !validateGeometryShaderInputVarying, mismatchedStructFieldName); |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3291 | if (linkError != LinkMismatchError::NO_MISMATCH) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3292 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3293 | return linkError; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3294 | } |
| 3295 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3296 | if (!sh::InterpolationTypesMatch(outputVarying.interpolation, inputVarying.interpolation)) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3297 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3298 | return LinkMismatchError::INTERPOLATION_TYPE_MISMATCH; |
Yuly Novikov | a1f6dc9 | 2016-06-15 23:27:04 -0400 | [diff] [blame] | 3299 | } |
| 3300 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3301 | if (shaderVersion == 100 && outputVarying.isInvariant != inputVarying.isInvariant) |
Yuly Novikov | a1f6dc9 | 2016-06-15 23:27:04 -0400 | [diff] [blame] | 3302 | { |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3303 | return LinkMismatchError::INVARIANCE_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3304 | } |
| 3305 | |
Jiawei Shao | 881b7bf | 2017-12-25 11:18:37 +0800 | [diff] [blame] | 3306 | return LinkMismatchError::NO_MISMATCH; |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3307 | } |
| 3308 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3309 | bool Program::linkValidateBuiltInVaryings(InfoLog &infoLog) const |
Yuly Novikov | 817232e | 2017-02-22 18:36:10 -0500 | [diff] [blame] | 3310 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3311 | Shader *vertexShader = mState.mAttachedShaders[ShaderType::Vertex]; |
| 3312 | Shader *fragmentShader = mState.mAttachedShaders[ShaderType::Fragment]; |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3313 | const auto &vertexVaryings = vertexShader->getOutputVaryings(); |
| 3314 | const auto &fragmentVaryings = fragmentShader->getInputVaryings(); |
| 3315 | int shaderVersion = vertexShader->getShaderVersion(); |
Yuly Novikov | 817232e | 2017-02-22 18:36:10 -0500 | [diff] [blame] | 3316 | |
| 3317 | if (shaderVersion != 100) |
| 3318 | { |
| 3319 | // Only ESSL 1.0 has restrictions on matching input and output invariance |
| 3320 | return true; |
| 3321 | } |
| 3322 | |
| 3323 | bool glPositionIsInvariant = false; |
| 3324 | bool glPointSizeIsInvariant = false; |
| 3325 | bool glFragCoordIsInvariant = false; |
| 3326 | bool glPointCoordIsInvariant = false; |
| 3327 | |
| 3328 | for (const sh::Varying &varying : vertexVaryings) |
| 3329 | { |
| 3330 | if (!varying.isBuiltIn()) |
| 3331 | { |
| 3332 | continue; |
| 3333 | } |
| 3334 | if (varying.name.compare("gl_Position") == 0) |
| 3335 | { |
| 3336 | glPositionIsInvariant = varying.isInvariant; |
| 3337 | } |
| 3338 | else if (varying.name.compare("gl_PointSize") == 0) |
| 3339 | { |
| 3340 | glPointSizeIsInvariant = varying.isInvariant; |
| 3341 | } |
| 3342 | } |
| 3343 | |
| 3344 | for (const sh::Varying &varying : fragmentVaryings) |
| 3345 | { |
| 3346 | if (!varying.isBuiltIn()) |
| 3347 | { |
| 3348 | continue; |
| 3349 | } |
| 3350 | if (varying.name.compare("gl_FragCoord") == 0) |
| 3351 | { |
| 3352 | glFragCoordIsInvariant = varying.isInvariant; |
| 3353 | } |
| 3354 | else if (varying.name.compare("gl_PointCoord") == 0) |
| 3355 | { |
| 3356 | glPointCoordIsInvariant = varying.isInvariant; |
| 3357 | } |
| 3358 | } |
| 3359 | |
| 3360 | // There is some ambiguity in ESSL 1.00.17 paragraph 4.6.4 interpretation, |
| 3361 | // for example, https://cvs.khronos.org/bugzilla/show_bug.cgi?id=13842. |
| 3362 | // Not requiring invariance to match is supported by: |
| 3363 | // dEQP, WebGL CTS, Nexus 5X GLES |
| 3364 | if (glFragCoordIsInvariant && !glPositionIsInvariant) |
| 3365 | { |
| 3366 | infoLog << "gl_FragCoord can only be declared invariant if and only if gl_Position is " |
| 3367 | "declared invariant."; |
| 3368 | return false; |
| 3369 | } |
| 3370 | if (glPointCoordIsInvariant && !glPointSizeIsInvariant) |
| 3371 | { |
| 3372 | infoLog << "gl_PointCoord can only be declared invariant if and only if gl_PointSize is " |
| 3373 | "declared invariant."; |
| 3374 | return false; |
| 3375 | } |
| 3376 | |
| 3377 | return true; |
| 3378 | } |
| 3379 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3380 | bool Program::linkValidateTransformFeedback(const Version &version, |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 3381 | InfoLog &infoLog, |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 3382 | const ProgramMergedVaryings &varyings, |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3383 | const Caps &caps) const |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3384 | { |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3385 | |
jchen10 | 8225e73 | 2017-11-14 16:29:03 +0800 | [diff] [blame] | 3386 | // Validate the tf names regardless of the actual program varyings. |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3387 | std::set<std::string> uniqueNames; |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 3388 | for (const std::string &tfVaryingName : mState.mTransformFeedbackVaryingNames) |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3389 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3390 | if (version < Version(3, 1) && tfVaryingName.find('[') != std::string::npos) |
Jamie Madill | 89bb70e | 2015-08-31 14:18:39 -0400 | [diff] [blame] | 3391 | { |
Geoff Lang | 1a68346 | 2015-09-29 15:09:59 -0400 | [diff] [blame] | 3392 | infoLog << "Capture of array elements is undefined and not supported."; |
Jamie Madill | 89bb70e | 2015-08-31 14:18:39 -0400 | [diff] [blame] | 3393 | return false; |
| 3394 | } |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3395 | if (version >= Version(3, 1)) |
jchen10 | 8225e73 | 2017-11-14 16:29:03 +0800 | [diff] [blame] | 3396 | { |
| 3397 | if (IncludeSameArrayElement(uniqueNames, tfVaryingName)) |
| 3398 | { |
| 3399 | infoLog << "Two transform feedback varyings include the same array element (" |
| 3400 | << tfVaryingName << ")."; |
| 3401 | return false; |
| 3402 | } |
| 3403 | } |
| 3404 | else |
| 3405 | { |
| 3406 | if (uniqueNames.count(tfVaryingName) > 0) |
| 3407 | { |
| 3408 | infoLog << "Two transform feedback varyings specify the same output variable (" |
| 3409 | << tfVaryingName << ")."; |
| 3410 | return false; |
| 3411 | } |
| 3412 | } |
| 3413 | uniqueNames.insert(tfVaryingName); |
| 3414 | } |
| 3415 | |
| 3416 | // Validate against program varyings. |
| 3417 | size_t totalComponents = 0; |
| 3418 | for (const std::string &tfVaryingName : mState.mTransformFeedbackVaryingNames) |
| 3419 | { |
| 3420 | std::vector<unsigned int> subscripts; |
| 3421 | std::string baseName = ParseResourceName(tfVaryingName, &subscripts); |
| 3422 | |
| 3423 | const sh::ShaderVariable *var = FindVaryingOrField(varyings, baseName); |
| 3424 | if (var == nullptr) |
jchen10 | 85c93c4 | 2017-11-12 15:36:47 +0800 | [diff] [blame] | 3425 | { |
| 3426 | infoLog << "Transform feedback varying " << tfVaryingName |
| 3427 | << " does not exist in the vertex shader."; |
| 3428 | return false; |
| 3429 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3430 | |
jchen10 | 8225e73 | 2017-11-14 16:29:03 +0800 | [diff] [blame] | 3431 | // Validate the matching variable. |
| 3432 | if (var->isStruct()) |
| 3433 | { |
| 3434 | infoLog << "Struct cannot be captured directly (" << baseName << ")."; |
| 3435 | return false; |
| 3436 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3437 | |
jchen10 | 8225e73 | 2017-11-14 16:29:03 +0800 | [diff] [blame] | 3438 | size_t elementCount = 0; |
| 3439 | size_t componentCount = 0; |
| 3440 | |
| 3441 | if (var->isArray()) |
| 3442 | { |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3443 | if (version < Version(3, 1)) |
jchen10 | 8225e73 | 2017-11-14 16:29:03 +0800 | [diff] [blame] | 3444 | { |
| 3445 | infoLog << "Capture of arrays is undefined and not supported."; |
| 3446 | return false; |
| 3447 | } |
| 3448 | |
| 3449 | // GLSL ES 3.10 section 4.3.6: A vertex output can't be an array of arrays. |
| 3450 | ASSERT(!var->isArrayOfArrays()); |
| 3451 | |
| 3452 | if (!subscripts.empty() && subscripts[0] >= var->getOutermostArraySize()) |
| 3453 | { |
| 3454 | infoLog << "Cannot capture outbound array element '" << tfVaryingName << "'."; |
| 3455 | return false; |
| 3456 | } |
| 3457 | elementCount = (subscripts.empty() ? var->getOutermostArraySize() : 1); |
| 3458 | } |
| 3459 | else |
| 3460 | { |
| 3461 | if (!subscripts.empty()) |
| 3462 | { |
| 3463 | infoLog << "Varying '" << baseName |
| 3464 | << "' is not an array to be captured by element."; |
| 3465 | return false; |
| 3466 | } |
| 3467 | elementCount = 1; |
| 3468 | } |
| 3469 | |
| 3470 | // TODO(jmadill): Investigate implementation limits on D3D11 |
| 3471 | componentCount = VariableComponentCount(var->type) * elementCount; |
| 3472 | if (mState.mTransformFeedbackBufferMode == GL_SEPARATE_ATTRIBS && |
| 3473 | componentCount > caps.maxTransformFeedbackSeparateComponents) |
| 3474 | { |
| 3475 | infoLog << "Transform feedback varying " << tfVaryingName << " components (" |
| 3476 | << componentCount << ") exceed the maximum separate components (" |
| 3477 | << caps.maxTransformFeedbackSeparateComponents << ")."; |
| 3478 | return false; |
| 3479 | } |
| 3480 | |
| 3481 | totalComponents += componentCount; |
| 3482 | if (mState.mTransformFeedbackBufferMode == GL_INTERLEAVED_ATTRIBS && |
| 3483 | totalComponents > caps.maxTransformFeedbackInterleavedComponents) |
| 3484 | { |
| 3485 | infoLog << "Transform feedback varying total components (" << totalComponents |
| 3486 | << ") exceed the maximum interleaved components (" |
| 3487 | << caps.maxTransformFeedbackInterleavedComponents << ")."; |
| 3488 | return false; |
| 3489 | } |
| 3490 | } |
Geoff Lang | 7dd2e10 | 2014-11-10 15:19:26 -0500 | [diff] [blame] | 3491 | return true; |
Geoff Lang | 1b6edcb | 2014-02-03 14:27:56 -0500 | [diff] [blame] | 3492 | } |
| 3493 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3494 | bool Program::linkValidateGlobalNames(InfoLog &infoLog) const |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3495 | { |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3496 | const std::vector<sh::Attribute> &attributes = |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3497 | mState.mAttachedShaders[ShaderType::Vertex]->getActiveAttributes(); |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3498 | |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3499 | for (const auto &attrib : attributes) |
| 3500 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3501 | for (ShaderType shaderType : kAllGraphicsShaderTypes) |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3502 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3503 | Shader *shader = mState.mAttachedShaders[shaderType]; |
| 3504 | if (!shader) |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3505 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3506 | continue; |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3507 | } |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3508 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3509 | const std::vector<sh::Uniform> &uniforms = shader->getUniforms(); |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3510 | for (const auto &uniform : uniforms) |
Jiawei Shao | 0d88ec9 | 2018-02-27 16:25:31 +0800 | [diff] [blame] | 3511 | { |
| 3512 | if (uniform.name == attrib.name) |
| 3513 | { |
| 3514 | infoLog << "Name conflicts between a uniform and an attribute: " << attrib.name; |
| 3515 | return false; |
| 3516 | } |
| 3517 | } |
| 3518 | } |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3519 | } |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3520 | |
Yuly Novikov | caa5cda | 2017-06-15 21:14:03 -0400 | [diff] [blame] | 3521 | return true; |
| 3522 | } |
| 3523 | |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 3524 | void Program::gatherTransformFeedbackVaryings(const ProgramMergedVaryings &varyings) |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3525 | { |
| 3526 | // Gather the linked varyings that are used for transform feedback, they should all exist. |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 3527 | mState.mLinkedTransformFeedbackVaryings.clear(); |
Jamie Madill | 48ef11b | 2016-04-27 15:21:52 -0400 | [diff] [blame] | 3528 | for (const std::string &tfVaryingName : mState.mTransformFeedbackVaryingNames) |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3529 | { |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 3530 | std::vector<unsigned int> subscripts; |
| 3531 | std::string baseName = ParseResourceName(tfVaryingName, &subscripts); |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 3532 | size_t subscript = GL_INVALID_INDEX; |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 3533 | if (!subscripts.empty()) |
| 3534 | { |
| 3535 | subscript = subscripts.back(); |
| 3536 | } |
Jamie Madill | 192745a | 2016-12-22 15:58:21 -0500 | [diff] [blame] | 3537 | for (const auto &ref : varyings) |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3538 | { |
Jamie Madill | 192745a | 2016-12-22 15:58:21 -0500 | [diff] [blame] | 3539 | const sh::Varying *varying = ref.second.get(); |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 3540 | if (baseName == varying->name) |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3541 | { |
jchen10 | a9042d3 | 2017-03-17 08:50:45 +0800 | [diff] [blame] | 3542 | mState.mLinkedTransformFeedbackVaryings.emplace_back( |
| 3543 | *varying, static_cast<GLuint>(subscript)); |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3544 | break; |
| 3545 | } |
jchen10 | 8225e73 | 2017-11-14 16:29:03 +0800 | [diff] [blame] | 3546 | else if (varying->isStruct()) |
| 3547 | { |
| 3548 | const auto *field = FindShaderVarField(*varying, tfVaryingName); |
| 3549 | if (field != nullptr) |
| 3550 | { |
| 3551 | mState.mLinkedTransformFeedbackVaryings.emplace_back(*field, *varying); |
| 3552 | break; |
| 3553 | } |
| 3554 | } |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3555 | } |
| 3556 | } |
James Darpinian | 30b604d | 2018-03-12 17:26:57 -0700 | [diff] [blame] | 3557 | mState.updateTransformFeedbackStrides(); |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3558 | } |
| 3559 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3560 | ProgramMergedVaryings Program::getMergedVaryings() const |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3561 | { |
Jamie Madill | 3c1da04 | 2017-11-27 18:33:40 -0500 | [diff] [blame] | 3562 | ProgramMergedVaryings merged; |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3563 | |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3564 | for (const sh::Varying &varying : |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3565 | mState.mAttachedShaders[ShaderType::Vertex]->getOutputVaryings()) |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3566 | { |
Jamie Madill | 192745a | 2016-12-22 15:58:21 -0500 | [diff] [blame] | 3567 | merged[varying.name].vertex = &varying; |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3568 | } |
| 3569 | |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3570 | for (const sh::Varying &varying : |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3571 | mState.mAttachedShaders[ShaderType::Fragment]->getInputVaryings()) |
Jamie Madill | ccdf74b | 2015-08-18 10:46:12 -0400 | [diff] [blame] | 3572 | { |
Jamie Madill | 192745a | 2016-12-22 15:58:21 -0500 | [diff] [blame] | 3573 | merged[varying.name].fragment = &varying; |
| 3574 | } |
| 3575 | |
| 3576 | return merged; |
| 3577 | } |
| 3578 | |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3579 | bool CompareOutputVariable(const sh::OutputVariable &a, const sh::OutputVariable &b) |
| 3580 | { |
| 3581 | return a.getArraySizeProduct() > b.getArraySizeProduct(); |
| 3582 | } |
| 3583 | |
| 3584 | int Program::getOutputLocationForLink(const sh::OutputVariable &outputVariable) const |
| 3585 | { |
| 3586 | if (outputVariable.location != -1) |
| 3587 | { |
| 3588 | return outputVariable.location; |
| 3589 | } |
| 3590 | int apiLocation = mFragmentOutputLocations.getBinding(outputVariable.name); |
| 3591 | if (apiLocation != -1) |
| 3592 | { |
| 3593 | return apiLocation; |
| 3594 | } |
| 3595 | return -1; |
| 3596 | } |
| 3597 | |
| 3598 | bool Program::isOutputSecondaryForLink(const sh::OutputVariable &outputVariable) const |
| 3599 | { |
| 3600 | if (outputVariable.index != -1) |
| 3601 | { |
| 3602 | ASSERT(outputVariable.index == 0 || outputVariable.index == 1); |
| 3603 | return (outputVariable.index == 1); |
| 3604 | } |
| 3605 | int apiIndex = mFragmentOutputIndexes.getBinding(outputVariable.name); |
| 3606 | if (apiIndex != -1) |
| 3607 | { |
| 3608 | // Index layout qualifier from the shader takes precedence, so the index from the API is |
| 3609 | // checked only if the index was not set in the shader. This is not specified in the EXT |
| 3610 | // spec, but is specified in desktop OpenGL specs. |
| 3611 | return (apiIndex == 1); |
| 3612 | } |
| 3613 | // EXT_blend_func_extended: Outputs get index 0 by default. |
| 3614 | return false; |
| 3615 | } |
| 3616 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3617 | bool Program::linkOutputVariables(const Caps &caps, |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3618 | const Extensions &extensions, |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3619 | const Version &version, |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3620 | GLuint combinedImageUniformsCount, |
| 3621 | GLuint combinedShaderStorageBlocksCount) |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3622 | { |
Jiawei Shao | 016105b | 2018-04-12 16:38:31 +0800 | [diff] [blame] | 3623 | Shader *fragmentShader = mState.mAttachedShaders[ShaderType::Fragment]; |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3624 | ASSERT(fragmentShader != nullptr); |
| 3625 | |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 3626 | ASSERT(mState.mOutputVariableTypes.empty()); |
Corentin Wallez | e755774 | 2017-06-01 13:09:57 -0400 | [diff] [blame] | 3627 | ASSERT(mState.mActiveOutputVariables.none()); |
Brandon Jones | 76746f9 | 2017-11-22 11:44:41 -0800 | [diff] [blame] | 3628 | ASSERT(mState.mDrawBufferTypeMask.none()); |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 3629 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3630 | const auto &outputVariables = fragmentShader->getActiveOutputVariables(); |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 3631 | // Gather output variable types |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3632 | for (const auto &outputVariable : outputVariables) |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 3633 | { |
| 3634 | if (outputVariable.isBuiltIn() && outputVariable.name != "gl_FragColor" && |
| 3635 | outputVariable.name != "gl_FragData") |
| 3636 | { |
| 3637 | continue; |
| 3638 | } |
| 3639 | |
| 3640 | unsigned int baseLocation = |
| 3641 | (outputVariable.location == -1 ? 0u |
| 3642 | : static_cast<unsigned int>(outputVariable.location)); |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 3643 | |
| 3644 | // GLSL ES 3.10 section 4.3.6: Output variables cannot be arrays of arrays or arrays of |
| 3645 | // structures, so we may use getBasicTypeElementCount(). |
| 3646 | unsigned int elementCount = outputVariable.getBasicTypeElementCount(); |
| 3647 | for (unsigned int elementIndex = 0; elementIndex < elementCount; elementIndex++) |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 3648 | { |
| 3649 | const unsigned int location = baseLocation + elementIndex; |
| 3650 | if (location >= mState.mOutputVariableTypes.size()) |
| 3651 | { |
| 3652 | mState.mOutputVariableTypes.resize(location + 1, GL_NONE); |
| 3653 | } |
Corentin Wallez | e755774 | 2017-06-01 13:09:57 -0400 | [diff] [blame] | 3654 | ASSERT(location < mState.mActiveOutputVariables.size()); |
| 3655 | mState.mActiveOutputVariables.set(location); |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 3656 | mState.mOutputVariableTypes[location] = VariableComponentType(outputVariable.type); |
Brandon Jones | 76746f9 | 2017-11-22 11:44:41 -0800 | [diff] [blame] | 3657 | mState.mDrawBufferTypeMask.setIndex(mState.mOutputVariableTypes[location], location); |
Geoff Lang | e0cff19 | 2017-05-30 13:04:56 -0400 | [diff] [blame] | 3658 | } |
| 3659 | } |
| 3660 | |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3661 | if (version >= ES_3_1) |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3662 | { |
| 3663 | // [OpenGL ES 3.1] Chapter 8.22 Page 203: |
| 3664 | // A link error will be generated if the sum of the number of active image uniforms used in |
| 3665 | // all shaders, the number of active shader storage blocks, and the number of active |
| 3666 | // fragment shader outputs exceeds the implementation-dependent value of |
| 3667 | // MAX_COMBINED_SHADER_OUTPUT_RESOURCES. |
| 3668 | if (combinedImageUniformsCount + combinedShaderStorageBlocksCount + |
| 3669 | mState.mActiveOutputVariables.count() > |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3670 | caps.maxCombinedShaderOutputResources) |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3671 | { |
| 3672 | mInfoLog |
| 3673 | << "The sum of the number of active image uniforms, active shader storage blocks " |
| 3674 | "and active fragment shader outputs exceeds " |
| 3675 | "MAX_COMBINED_SHADER_OUTPUT_RESOURCES (" |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3676 | << caps.maxCombinedShaderOutputResources << ")"; |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3677 | return false; |
| 3678 | } |
| 3679 | } |
| 3680 | |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3681 | // Skip this step for GLES2 shaders. |
jchen10 | 3fd614d | 2018-08-13 12:21:58 +0800 | [diff] [blame] | 3682 | if (fragmentShader->getShaderVersion() == 100) |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3683 | return true; |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3684 | |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3685 | mState.mOutputVariables = outputVariables; |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3686 | // TODO(jmadill): any caps validation here? |
| 3687 | |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3688 | for (sh::OutputVariable &outputVariable : mState.mOutputVariables) |
| 3689 | { |
| 3690 | if (outputVariable.isArray()) |
| 3691 | { |
| 3692 | // We're following the GLES 3.1 November 2016 spec section 7.3.1.1 Naming Active |
| 3693 | // Resources and including [0] at the end of array variable names. |
| 3694 | outputVariable.name += "[0]"; |
| 3695 | outputVariable.mappedName += "[0]"; |
| 3696 | } |
| 3697 | } |
| 3698 | |
| 3699 | bool hasSecondaryOutputs = false; |
| 3700 | |
| 3701 | // Reserve locations for output variables whose location is fixed in the shader or through the |
| 3702 | // API. |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 3703 | for (unsigned int outputVariableIndex = 0; outputVariableIndex < mState.mOutputVariables.size(); |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3704 | outputVariableIndex++) |
| 3705 | { |
jchen10 | 15015f7 | 2017-03-16 13:54:21 +0800 | [diff] [blame] | 3706 | const sh::OutputVariable &outputVariable = mState.mOutputVariables[outputVariableIndex]; |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3707 | |
| 3708 | // Don't store outputs for gl_FragDepth, gl_FragColor, etc. |
| 3709 | if (outputVariable.isBuiltIn()) |
| 3710 | continue; |
| 3711 | |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3712 | int baseLocation = getOutputLocationForLink(outputVariable); |
| 3713 | if (baseLocation == -1) |
| 3714 | { |
| 3715 | // Here we're only reserving locations for variables whose location is fixed. |
| 3716 | continue; |
| 3717 | } |
| 3718 | |
| 3719 | auto *outputLocations = &mState.mOutputLocations; |
| 3720 | if (isOutputSecondaryForLink(outputVariable)) |
| 3721 | { |
| 3722 | outputLocations = &mState.mSecondaryOutputLocations; |
| 3723 | // Note that this check doesn't need to be before checking baseLocation == -1 above. If |
| 3724 | // an output has an index specified it will always also have the location specified. |
| 3725 | hasSecondaryOutputs = true; |
| 3726 | } |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3727 | |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 3728 | // GLSL ES 3.10 section 4.3.6: Output variables cannot be arrays of arrays or arrays of |
| 3729 | // structures, so we may use getBasicTypeElementCount(). |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 3730 | unsigned int elementCount = outputVariable.getBasicTypeElementCount(); |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3731 | unsigned int outputLocationsNeeded = static_cast<unsigned int>(baseLocation) + elementCount; |
| 3732 | if (outputLocationsNeeded > outputLocations->size()) |
| 3733 | { |
| 3734 | outputLocations->resize(outputLocationsNeeded); |
| 3735 | } |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 3736 | for (unsigned int elementIndex = 0; elementIndex < elementCount; elementIndex++) |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3737 | { |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3738 | const unsigned int location = static_cast<unsigned int>(baseLocation) + elementIndex; |
| 3739 | ASSERT(location < outputLocations->size()); |
| 3740 | if (outputLocations->at(location).used()) |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 3741 | { |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3742 | mInfoLog << "Location of variable " << outputVariable.name |
| 3743 | << " conflicts with another variable."; |
| 3744 | return false; |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 3745 | } |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 3746 | if (outputVariable.isArray()) |
| 3747 | { |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3748 | (*outputLocations)[location] = VariableLocation(elementIndex, outputVariableIndex); |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 3749 | } |
| 3750 | else |
| 3751 | { |
| 3752 | VariableLocation locationInfo; |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 3753 | locationInfo.index = outputVariableIndex; |
| 3754 | (*outputLocations)[location] = locationInfo; |
Olli Etuaho | 0ca0975 | 2018-09-24 11:00:50 +0300 | [diff] [blame] | 3755 | } |
| 3756 | } |
| 3757 | } |
| 3758 | |
| 3759 | // Here we assign locations for the output variables that don't yet have them. Note that we're |
| 3760 | // not necessarily able to fit the variables optimally, since then we might have to try |
| 3761 | // different arrangements of output arrays. Now we just assign the locations in the order that |
| 3762 | // we got the output variables. The spec isn't clear on what kind of algorithm is required for |
| 3763 | // finding locations for the output variables, so this should be acceptable at least for now. |
| 3764 | GLuint maxLocation = caps.maxDrawBuffers; |
| 3765 | if (hasSecondaryOutputs) |
| 3766 | { |
| 3767 | // EXT_blend_func_extended: Program outputs will be validated against |
| 3768 | // MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT if there's even one output with index one. |
| 3769 | maxLocation = extensions.maxDualSourceDrawBuffers; |
| 3770 | } |
| 3771 | |
| 3772 | for (unsigned int outputVariableIndex = 0; outputVariableIndex < mState.mOutputVariables.size(); |
| 3773 | outputVariableIndex++) |
| 3774 | { |
| 3775 | const sh::OutputVariable &outputVariable = mState.mOutputVariables[outputVariableIndex]; |
| 3776 | |
| 3777 | // Don't store outputs for gl_FragDepth, gl_FragColor, etc. |
| 3778 | if (outputVariable.isBuiltIn()) |
| 3779 | continue; |
| 3780 | |
| 3781 | if (getOutputLocationForLink(outputVariable) != -1) |
| 3782 | { |
| 3783 | continue; |
| 3784 | } |
| 3785 | |
| 3786 | auto *outputLocations = &mState.mOutputLocations; |
| 3787 | if (isOutputSecondaryForLink(outputVariable)) |
| 3788 | { |
| 3789 | outputLocations = &mState.mSecondaryOutputLocations; |
| 3790 | } |
| 3791 | |
| 3792 | int baseLocation = 0; |
| 3793 | unsigned int elementCount = outputVariable.getBasicTypeElementCount(); |
| 3794 | bool elementsFit = false; |
| 3795 | while (!elementsFit) |
| 3796 | { |
| 3797 | // Try baseLocations starting from 0 one at a time and see if the variable fits. |
| 3798 | elementsFit = true; |
| 3799 | if (baseLocation + elementCount > maxLocation) |
| 3800 | { |
| 3801 | // EXT_blend_func_extended: Linking can fail: |
| 3802 | // "if the explicit binding assignments do not leave enough space for the linker to |
| 3803 | // automatically assign a location for a varying out array, which requires multiple |
| 3804 | // contiguous locations." |
| 3805 | mInfoLog << "Could not fit output variable into available locations: " |
| 3806 | << outputVariable.name; |
| 3807 | return false; |
| 3808 | } |
| 3809 | unsigned int outputLocationsNeeded = |
| 3810 | static_cast<unsigned int>(baseLocation) + elementCount; |
| 3811 | if (outputLocationsNeeded > outputLocations->size()) |
| 3812 | { |
| 3813 | outputLocations->resize(outputLocationsNeeded); |
| 3814 | } |
| 3815 | for (unsigned int elementIndex = 0; elementIndex < elementCount; elementIndex++) |
| 3816 | { |
| 3817 | const unsigned int location = |
| 3818 | static_cast<unsigned int>(baseLocation) + elementIndex; |
| 3819 | ASSERT(location < outputLocations->size()); |
| 3820 | if (outputLocations->at(location).used()) |
| 3821 | { |
| 3822 | elementsFit = false; |
| 3823 | break; |
| 3824 | } |
| 3825 | } |
| 3826 | if (elementsFit) |
| 3827 | { |
| 3828 | for (unsigned int elementIndex = 0; elementIndex < elementCount; elementIndex++) |
| 3829 | { |
| 3830 | const unsigned int location = |
| 3831 | static_cast<unsigned int>(baseLocation) + elementIndex; |
| 3832 | if (outputVariable.isArray()) |
| 3833 | { |
| 3834 | (*outputLocations)[location] = |
| 3835 | VariableLocation(elementIndex, outputVariableIndex); |
| 3836 | } |
| 3837 | else |
| 3838 | { |
| 3839 | VariableLocation locationInfo; |
| 3840 | locationInfo.index = outputVariableIndex; |
| 3841 | (*outputLocations)[location] = locationInfo; |
| 3842 | } |
| 3843 | } |
| 3844 | } |
| 3845 | else |
| 3846 | { |
| 3847 | ++baseLocation; |
Olli Etuaho | c853804 | 2017-09-27 11:20:15 +0300 | [diff] [blame] | 3848 | } |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3849 | } |
| 3850 | } |
Jiawei Shao | 7a8fe15 | 2018-04-28 12:59:58 +0800 | [diff] [blame] | 3851 | |
| 3852 | return true; |
Jamie Madill | 80a6fc0 | 2015-08-21 16:53:16 -0400 | [diff] [blame] | 3853 | } |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 3854 | |
Olli Etuaho | 48fed63 | 2017-03-16 12:05:30 +0000 | [diff] [blame] | 3855 | void Program::setUniformValuesFromBindingQualifiers() |
| 3856 | { |
Jamie Madill | 982f6e0 | 2017-06-07 14:33:04 -0400 | [diff] [blame] | 3857 | for (unsigned int samplerIndex : mState.mSamplerUniformRange) |
Olli Etuaho | 48fed63 | 2017-03-16 12:05:30 +0000 | [diff] [blame] | 3858 | { |
| 3859 | const auto &samplerUniform = mState.mUniforms[samplerIndex]; |
| 3860 | if (samplerUniform.binding != -1) |
| 3861 | { |
Olli Etuaho | d255123 | 2017-10-26 20:03:33 +0300 | [diff] [blame] | 3862 | GLint location = getUniformLocation(samplerUniform.name); |
Olli Etuaho | 48fed63 | 2017-03-16 12:05:30 +0000 | [diff] [blame] | 3863 | ASSERT(location != -1); |
| 3864 | std::vector<GLint> boundTextureUnits; |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 3865 | for (unsigned int elementIndex = 0; |
| 3866 | elementIndex < samplerUniform.getBasicTypeElementCount(); ++elementIndex) |
Olli Etuaho | 48fed63 | 2017-03-16 12:05:30 +0000 | [diff] [blame] | 3867 | { |
| 3868 | boundTextureUnits.push_back(samplerUniform.binding + elementIndex); |
| 3869 | } |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3870 | |
| 3871 | // Here we pass nullptr to avoid a large chain of calls that need a non-const Context. |
| 3872 | // We know it's safe not to notify the Context because this is only called after link. |
| 3873 | setUniform1iv(nullptr, location, static_cast<GLsizei>(boundTextureUnits.size()), |
Olli Etuaho | 48fed63 | 2017-03-16 12:05:30 +0000 | [diff] [blame] | 3874 | boundTextureUnits.data()); |
| 3875 | } |
| 3876 | } |
| 3877 | } |
| 3878 | |
Jamie Madill | 6db1c2e | 2017-11-08 09:17:40 -0500 | [diff] [blame] | 3879 | void Program::initInterfaceBlockBindings() |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 3880 | { |
jchen10 | af713a2 | 2017-04-19 09:10:56 +0800 | [diff] [blame] | 3881 | // Set initial bindings from shader. |
| 3882 | for (unsigned int blockIndex = 0; blockIndex < mState.mUniformBlocks.size(); blockIndex++) |
| 3883 | { |
Jiajia Qin | 729b2c6 | 2017-08-14 09:36:11 +0800 | [diff] [blame] | 3884 | InterfaceBlock &uniformBlock = mState.mUniformBlocks[blockIndex]; |
jchen10 | af713a2 | 2017-04-19 09:10:56 +0800 | [diff] [blame] | 3885 | bindUniformBlock(blockIndex, uniformBlock.binding); |
| 3886 | } |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 3887 | } |
| 3888 | |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3889 | void Program::updateSamplerUniform(Context *context, |
| 3890 | const VariableLocation &locationInfo, |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 3891 | GLsizei clampedCount, |
| 3892 | const GLint *v) |
| 3893 | { |
Jamie Madill | 81c2e25 | 2017-09-09 23:32:46 -0400 | [diff] [blame] | 3894 | ASSERT(mState.isSamplerUniformIndex(locationInfo.index)); |
Jamie Madill | b980c56 | 2018-11-27 11:34:27 -0500 | [diff] [blame] | 3895 | GLuint samplerIndex = mState.getSamplerIndexFromUniformIndex(locationInfo.index); |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3896 | SamplerBinding &samplerBinding = mState.mSamplerBindings[samplerIndex]; |
| 3897 | std::vector<GLuint> &boundTextureUnits = samplerBinding.boundTextureUnits; |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 3898 | |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3899 | if (samplerBinding.unreferenced) |
| 3900 | return; |
| 3901 | |
| 3902 | // Update the sampler uniforms. |
| 3903 | for (GLsizei arrayIndex = 0; arrayIndex < clampedCount; ++arrayIndex) |
| 3904 | { |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3905 | GLint oldTextureUnit = boundTextureUnits[arrayIndex + locationInfo.arrayIndex]; |
| 3906 | GLint newTextureUnit = v[arrayIndex]; |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3907 | |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3908 | if (oldTextureUnit == newTextureUnit) |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3909 | continue; |
| 3910 | |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3911 | boundTextureUnits[arrayIndex + locationInfo.arrayIndex] = newTextureUnit; |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3912 | |
| 3913 | // Update the reference counts. |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3914 | uint32_t &oldRefCount = mState.mActiveSamplerRefCounts[oldTextureUnit]; |
| 3915 | uint32_t &newRefCount = mState.mActiveSamplerRefCounts[newTextureUnit]; |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3916 | ASSERT(oldRefCount > 0); |
| 3917 | ASSERT(newRefCount < std::numeric_limits<uint32_t>::max()); |
| 3918 | oldRefCount--; |
| 3919 | newRefCount++; |
| 3920 | |
| 3921 | // Check for binding type change. |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3922 | TextureType &newSamplerType = mState.mActiveSamplerTypes[newTextureUnit]; |
| 3923 | TextureType &oldSamplerType = mState.mActiveSamplerTypes[oldTextureUnit]; |
| 3924 | SamplerFormat &newSamplerFormat = mState.mActiveSamplerFormats[newTextureUnit]; |
| 3925 | SamplerFormat &oldSamplerFormat = mState.mActiveSamplerFormats[oldTextureUnit]; |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3926 | |
| 3927 | if (newRefCount == 1) |
| 3928 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3929 | newSamplerType = samplerBinding.textureType; |
| 3930 | newSamplerFormat = samplerBinding.format; |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3931 | mState.mActiveSamplersMask.set(newTextureUnit); |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3932 | } |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3933 | else |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3934 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3935 | if (newSamplerType != samplerBinding.textureType) |
| 3936 | { |
| 3937 | // Conflict detected. Ensure we reset it properly. |
| 3938 | newSamplerType = TextureType::InvalidEnum; |
| 3939 | } |
| 3940 | if (newSamplerFormat != samplerBinding.format) |
| 3941 | { |
| 3942 | newSamplerFormat = SamplerFormat::InvalidEnum; |
| 3943 | } |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3944 | } |
| 3945 | |
| 3946 | // Unset previously active sampler. |
| 3947 | if (oldRefCount == 0) |
| 3948 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3949 | oldSamplerType = TextureType::InvalidEnum; |
| 3950 | oldSamplerFormat = SamplerFormat::InvalidEnum; |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3951 | mState.mActiveSamplersMask.reset(oldTextureUnit); |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3952 | } |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3953 | else |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3954 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3955 | if (oldSamplerType == TextureType::InvalidEnum || |
| 3956 | oldSamplerFormat == SamplerFormat::InvalidEnum) |
| 3957 | { |
| 3958 | // Previous conflict. Check if this new change fixed the conflict. |
| 3959 | mState.setSamplerUniformTextureTypeAndFormat(oldTextureUnit); |
| 3960 | } |
Jamie Madill | e3e680c | 2018-12-03 17:49:08 -0500 | [diff] [blame] | 3961 | } |
| 3962 | |
| 3963 | // Notify context. |
| 3964 | if (context) |
| 3965 | { |
| 3966 | context->onSamplerUniformChange(newTextureUnit); |
| 3967 | context->onSamplerUniformChange(oldTextureUnit); |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3968 | } |
| 3969 | } |
Jamie Madill | d68248b | 2017-09-11 14:34:14 -0400 | [diff] [blame] | 3970 | |
| 3971 | // Invalidate the validation cache. |
Jamie Madill | 81c2e25 | 2017-09-09 23:32:46 -0400 | [diff] [blame] | 3972 | mCachedValidateSamplersResult.reset(); |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 3973 | } |
| 3974 | |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3975 | void ProgramState::setSamplerUniformTextureTypeAndFormat(size_t textureUnitIndex) |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3976 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3977 | bool foundBinding = false; |
| 3978 | TextureType foundType = TextureType::InvalidEnum; |
| 3979 | SamplerFormat foundFormat = SamplerFormat::InvalidEnum; |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3980 | |
| 3981 | for (const SamplerBinding &binding : mSamplerBindings) |
| 3982 | { |
| 3983 | if (binding.unreferenced) |
| 3984 | continue; |
| 3985 | |
| 3986 | // A conflict exists if samplers of different types are sourced by the same texture unit. |
| 3987 | // We need to check all bound textures to detect this error case. |
| 3988 | for (GLuint textureUnit : binding.boundTextureUnits) |
| 3989 | { |
| 3990 | if (textureUnit == textureUnitIndex) |
| 3991 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3992 | if (!foundBinding) |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3993 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3994 | foundBinding = true; |
| 3995 | foundType = binding.textureType; |
| 3996 | foundFormat = binding.format; |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3997 | } |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 3998 | else |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 3999 | { |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 4000 | if (foundType != binding.textureType) |
| 4001 | { |
| 4002 | foundType = TextureType::InvalidEnum; |
| 4003 | } |
| 4004 | if (foundFormat != binding.format) |
| 4005 | { |
| 4006 | foundFormat = SamplerFormat::InvalidEnum; |
| 4007 | } |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 4008 | } |
| 4009 | } |
| 4010 | } |
| 4011 | } |
| 4012 | |
James Darpinian | e4109f2 | 2018-12-13 16:25:53 -0800 | [diff] [blame^] | 4013 | mActiveSamplerTypes[textureUnitIndex] = foundType; |
| 4014 | mActiveSamplerFormats[textureUnitIndex] = foundFormat; |
Jamie Madill | 7e4eff1 | 2018-08-08 15:49:26 -0400 | [diff] [blame] | 4015 | } |
| 4016 | |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 4017 | template <typename T> |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4018 | GLsizei Program::clampUniformCount(const VariableLocation &locationInfo, |
| 4019 | GLsizei count, |
| 4020 | int vectorSize, |
Jamie Madill | e7d8432 | 2017-01-10 18:21:59 -0500 | [diff] [blame] | 4021 | const T *v) |
| 4022 | { |
Jamie Madill | 134f93d | 2017-08-31 17:11:00 -0400 | [diff] [blame] | 4023 | if (count == 1) |
| 4024 | return 1; |
| 4025 | |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4026 | const LinkedUniform &linkedUniform = mState.mUniforms[locationInfo.index]; |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4027 | |
Corentin Wallez | 15ac534 | 2016-11-03 17:06:39 -0400 | [diff] [blame] | 4028 | // OpenGL ES 3.0.4 spec pg 67: "Values for any array element that exceeds the highest array |
| 4029 | // element index used, as reported by GetActiveUniform, will be ignored by the GL." |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 4030 | unsigned int remainingElements = |
| 4031 | linkedUniform.getBasicTypeElementCount() - locationInfo.arrayIndex; |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 4032 | GLsizei maxElementCount = |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4033 | static_cast<GLsizei>(remainingElements * linkedUniform.getElementComponents()); |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 4034 | |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4035 | if (count * vectorSize > maxElementCount) |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 4036 | { |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4037 | return maxElementCount / vectorSize; |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4038 | } |
Corentin Wallez | 8b7d814 | 2016-11-15 13:40:37 -0500 | [diff] [blame] | 4039 | |
| 4040 | return count; |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4041 | } |
| 4042 | |
| 4043 | template <size_t cols, size_t rows, typename T> |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4044 | GLsizei Program::clampMatrixUniformCount(GLint location, |
| 4045 | GLsizei count, |
| 4046 | GLboolean transpose, |
| 4047 | const T *v) |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4048 | { |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4049 | const VariableLocation &locationInfo = mState.mUniformLocations[location]; |
| 4050 | |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4051 | if (!transpose) |
| 4052 | { |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4053 | return clampUniformCount(locationInfo, count, cols * rows, v); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4054 | } |
| 4055 | |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4056 | const LinkedUniform &linkedUniform = mState.mUniforms[locationInfo.index]; |
Corentin Wallez | 15ac534 | 2016-11-03 17:06:39 -0400 | [diff] [blame] | 4057 | |
| 4058 | // OpenGL ES 3.0.4 spec pg 67: "Values for any array element that exceeds the highest array |
| 4059 | // element index used, as reported by GetActiveUniform, will be ignored by the GL." |
Olli Etuaho | 465835d | 2017-09-26 13:34:10 +0300 | [diff] [blame] | 4060 | unsigned int remainingElements = |
| 4061 | linkedUniform.getBasicTypeElementCount() - locationInfo.arrayIndex; |
Jamie Madill | be5e2ec | 2017-08-31 13:28:28 -0400 | [diff] [blame] | 4062 | return std::min(count, static_cast<GLsizei>(remainingElements)); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4063 | } |
| 4064 | |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4065 | // Driver differences mean that doing the uniform value cast ourselves gives consistent results. |
| 4066 | // EG: on NVIDIA drivers, it was observed that getUniformi for MAX_INT+1 returned MIN_INT. |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4067 | template <typename DestT> |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4068 | void Program::getUniformInternal(const Context *context, |
| 4069 | DestT *dataOut, |
| 4070 | GLint location, |
| 4071 | GLenum nativeType, |
| 4072 | int components) const |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4073 | { |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4074 | switch (nativeType) |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4075 | { |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4076 | case GL_BOOL: |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4077 | { |
| 4078 | GLint tempValue[16] = {0}; |
| 4079 | mProgram->getUniformiv(context, location, tempValue); |
| 4080 | UniformStateQueryCastLoop<GLboolean>( |
| 4081 | dataOut, reinterpret_cast<const uint8_t *>(tempValue), components); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4082 | break; |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4083 | } |
| 4084 | case GL_INT: |
| 4085 | { |
| 4086 | GLint tempValue[16] = {0}; |
| 4087 | mProgram->getUniformiv(context, location, tempValue); |
| 4088 | UniformStateQueryCastLoop<GLint>(dataOut, reinterpret_cast<const uint8_t *>(tempValue), |
| 4089 | components); |
| 4090 | break; |
| 4091 | } |
| 4092 | case GL_UNSIGNED_INT: |
| 4093 | { |
| 4094 | GLuint tempValue[16] = {0}; |
| 4095 | mProgram->getUniformuiv(context, location, tempValue); |
| 4096 | UniformStateQueryCastLoop<GLuint>(dataOut, reinterpret_cast<const uint8_t *>(tempValue), |
| 4097 | components); |
| 4098 | break; |
| 4099 | } |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4100 | case GL_FLOAT: |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4101 | { |
| 4102 | GLfloat tempValue[16] = {0}; |
| 4103 | mProgram->getUniformfv(context, location, tempValue); |
| 4104 | UniformStateQueryCastLoop<GLfloat>( |
| 4105 | dataOut, reinterpret_cast<const uint8_t *>(tempValue), components); |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4106 | break; |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4107 | } |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4108 | default: |
| 4109 | UNREACHABLE(); |
Jamie Madill | 54164b0 | 2017-08-28 15:17:37 -0400 | [diff] [blame] | 4110 | break; |
Jamie Madill | 62d31cb | 2015-09-11 13:25:51 -0400 | [diff] [blame] | 4111 | } |
| 4112 | } |
Jamie Madill | a4595b8 | 2017-01-11 17:36:34 -0500 | [diff] [blame] | 4113 | |
| 4114 | bool Program::samplesFromTexture(const gl::State &state, GLuint textureID) const |
| 4115 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 4116 | ASSERT(mLinkResolved); |
Jamie Madill | a4595b8 | 2017-01-11 17:36:34 -0500 | [diff] [blame] | 4117 | // Must be called after samplers are validated. |
| 4118 | ASSERT(mCachedValidateSamplersResult.valid() && mCachedValidateSamplersResult.value()); |
| 4119 | |
| 4120 | for (const auto &binding : mState.mSamplerBindings) |
| 4121 | { |
Corentin Wallez | f0e89be | 2017-11-08 14:00:32 -0800 | [diff] [blame] | 4122 | TextureType textureType = binding.textureType; |
Jamie Madill | a4595b8 | 2017-01-11 17:36:34 -0500 | [diff] [blame] | 4123 | for (const auto &unit : binding.boundTextureUnits) |
| 4124 | { |
| 4125 | GLenum programTextureID = state.getSamplerTextureId(unit, textureType); |
| 4126 | if (programTextureID == textureID) |
| 4127 | { |
| 4128 | // TODO(jmadill): Check for appropriate overlap. |
| 4129 | return true; |
| 4130 | } |
| 4131 | } |
| 4132 | } |
| 4133 | |
| 4134 | return false; |
| 4135 | } |
| 4136 | |
Jamie Madill | 6f755b2 | 2018-10-09 12:48:54 -0400 | [diff] [blame] | 4137 | angle::Result Program::syncState(const Context *context) |
Jamie Madill | 70aeda4 | 2018-08-20 12:17:40 -0400 | [diff] [blame] | 4138 | { |
| 4139 | if (mDirtyBits.any()) |
| 4140 | { |
Jamie Madill | 44a6fbf | 2018-10-02 13:38:56 -0400 | [diff] [blame] | 4141 | ASSERT(mLinkResolved); |
Jamie Madill | 70aeda4 | 2018-08-20 12:17:40 -0400 | [diff] [blame] | 4142 | ANGLE_TRY(mProgram->syncState(context, mDirtyBits)); |
| 4143 | mDirtyBits.reset(); |
| 4144 | } |
| 4145 | |
Jamie Madill | 7c985f5 | 2018-11-29 18:16:17 -0500 | [diff] [blame] | 4146 | return angle::Result::Continue; |
Jamie Madill | 70aeda4 | 2018-08-20 12:17:40 -0400 | [diff] [blame] | 4147 | } |
Jamie Madill | a2c7498 | 2016-12-12 11:20:42 -0500 | [diff] [blame] | 4148 | } // namespace gl |