Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 9 | #include "src/gpu/GrShaderCaps.h" |
| 10 | #include "src/gpu/GrShaderVar.h" |
Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 11 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 12 | static const char* type_modifier_string(GrShaderVar::TypeModifier t) { |
| 13 | switch (t) { |
| 14 | case GrShaderVar::kNone_TypeModifier: return ""; |
| 15 | case GrShaderVar::kIn_TypeModifier: return "in"; |
| 16 | case GrShaderVar::kInOut_TypeModifier: return "inout"; |
| 17 | case GrShaderVar::kOut_TypeModifier: return "out"; |
| 18 | case GrShaderVar::kUniform_TypeModifier: return "uniform"; |
| 19 | } |
Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 20 | SK_ABORT("Unknown shader variable type modifier."); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 21 | return ""; |
| 22 | } |
| 23 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 24 | void GrShaderVar::setIOType(GrIOType ioType) { |
| 25 | switch (ioType) { |
| 26 | case kRW_GrIOType: |
| 27 | return; |
| 28 | case kRead_GrIOType: |
| 29 | this->addModifier("readonly"); |
| 30 | return; |
| 31 | case kWrite_GrIOType: |
| 32 | this->addModifier("writeonly"); |
| 33 | return; |
| 34 | } |
Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 35 | SK_ABORT("Unknown io type."); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 36 | } |
| 37 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 38 | void GrShaderVar::appendDecl(const GrShaderCaps* shaderCaps, SkString* out) const { |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 39 | SkString layout = fLayoutQualifier; |
Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 40 | if (!fLayoutQualifier.isEmpty()) { |
| 41 | out->appendf("layout(%s) ", fLayoutQualifier.c_str()); |
| 42 | } |
| 43 | out->append(fExtraModifiers); |
| 44 | if (this->getTypeModifier() != kNone_TypeModifier) { |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 45 | out->append(type_modifier_string(this->getTypeModifier())); |
Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 46 | out->append(" "); |
| 47 | } |
| 48 | GrSLType effectiveType = this->getType(); |
Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 49 | if (this->isArray()) { |
| 50 | if (this->isUnsizedArray()) { |
Chris Dalton | 4f5cbcd | 2019-02-13 14:04:34 -0700 | [diff] [blame] | 51 | out->appendf("%s %s[]", GrGLSLTypeString(effectiveType), this->getName().c_str()); |
Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 52 | } else { |
| 53 | SkASSERT(this->getArrayCount() > 0); |
| 54 | out->appendf("%s %s[%d]", |
Chris Dalton | 4f5cbcd | 2019-02-13 14:04:34 -0700 | [diff] [blame] | 55 | GrGLSLTypeString(effectiveType), |
Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 56 | this->getName().c_str(), |
| 57 | this->getArrayCount()); |
| 58 | } |
| 59 | } else { |
Chris Dalton | 4f5cbcd | 2019-02-13 14:04:34 -0700 | [diff] [blame] | 60 | out->appendf("%s %s", GrGLSLTypeString(effectiveType), this->getName().c_str()); |
Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 61 | } |
| 62 | } |