aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/vk/GrVkUniformHandler.cpp
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2016-11-16 12:55:57 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-16 19:27:27 +0000
commita8f0002f0c2f23167f1e6b3ae3f77d3c7768cac3 (patch)
tree3124b8ddf07c731e75746d3cbcc733e1f647049e /src/gpu/vk/GrVkUniformHandler.cpp
parenta9312fd56e2209f56222f822eb10ed0c25a42724 (diff)
Rename kTexture2DISampler to kITexture2DSampler.
Also remove unused kGrSLTypeCount. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4903 Change-Id: I7f934c56515424b2668886dec2f16296a1256e2c Reviewed-on: https://skia-review.googlesource.com/4903 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'src/gpu/vk/GrVkUniformHandler.cpp')
-rw-r--r--src/gpu/vk/GrVkUniformHandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/vk/GrVkUniformHandler.cpp b/src/gpu/vk/GrVkUniformHandler.cpp
index 612d0db937..dcfefbfffd 100644
--- a/src/gpu/vk/GrVkUniformHandler.cpp
+++ b/src/gpu/vk/GrVkUniformHandler.cpp
@@ -39,7 +39,7 @@ uint32_t grsltype_to_alignment_mask(GrSLType type) {
case kVoid_GrSLType:
case kBool_GrSLType:
case kTexture2DSampler_GrSLType:
- case kTexture2DISampler_GrSLType:
+ case kITexture2DSampler_GrSLType:
case kTextureExternalSampler_GrSLType:
case kTexture2DRectSampler_GrSLType:
case kTextureBufferSampler_GrSLType:
@@ -80,7 +80,7 @@ static inline uint32_t grsltype_to_vk_size(GrSLType type) {
case kVoid_GrSLType:
case kBool_GrSLType:
case kTexture2DSampler_GrSLType:
- case kTexture2DISampler_GrSLType:
+ case kITexture2DSampler_GrSLType:
case kTextureExternalSampler_GrSLType:
case kTexture2DRectSampler_GrSLType:
case kTextureBufferSampler_GrSLType: