aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrTypes.h
diff options
context:
space:
mode:
authorGravatar krajcevski <krajcevski@google.com>2014-06-09 08:32:34 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-06-09 08:32:34 -0700
commit748e9d37dcc7c58ef9010ea0ab78efea6af2a84b (patch)
treee9362325d1e79565275eb24ded6c866326216819 /include/gpu/GrTypes.h
parent00dfb9ea7b2b461da4e1ed8834489be595b65f04 (diff)
Add LATC to alpha only pixel config
R=robertphillips@google.com, bsalomon@google.com Author: krajcevski@google.com Review URL: https://codereview.chromium.org/323853003
Diffstat (limited to 'include/gpu/GrTypes.h')
-rw-r--r--include/gpu/GrTypes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/gpu/GrTypes.h b/include/gpu/GrTypes.h
index 519ad0fbca..a529eed420 100644
--- a/include/gpu/GrTypes.h
+++ b/include/gpu/GrTypes.h
@@ -363,6 +363,7 @@ static inline bool GrPixelConfigIsOpaque(GrPixelConfig config) {
static inline bool GrPixelConfigIsAlphaOnly(GrPixelConfig config) {
switch (config) {
+ case kLATC_GrPixelConfig:
case kAlpha_8_GrPixelConfig:
return true;
default: