aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Greg Daniel <egdaniel@google.com>2017-09-25 12:27:44 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-26 18:17:37 +0000
commite2d76d5ffea9e0fed2970d7b54d77b91d4b358de (patch)
tree19b966ae91bbb97d97b812ae6641c3f77a7ba27a /include
parent9b89bcae4088b174480795ef16e321c6c74e85ae (diff)
Remove fIsMipMapped from GrSurfaceDesc
Part 3 of 3 for relanding of https://skia-review.googlesource.com/c/skia/+/42083 Bug: skia: Change-Id: I98c5406015213df5d11a0101df8722da6845157e Reviewed-on: https://skia-review.googlesource.com/44464 Reviewed-by: Robert Phillips <robertphillips@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/gpu/GrTypes.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/gpu/GrTypes.h b/include/gpu/GrTypes.h
index 6ba9ffe429..606fc00cb3 100644
--- a/include/gpu/GrTypes.h
+++ b/include/gpu/GrTypes.h
@@ -594,8 +594,7 @@ struct GrSurfaceDesc {
, fWidth(0)
, fHeight(0)
, fConfig(kUnknown_GrPixelConfig)
- , fSampleCnt(0)
- , fIsMipMapped(false) {
+ , fSampleCnt(0) {
}
GrSurfaceFlags fFlags; //!< bitfield of TextureFlags
@@ -617,7 +616,6 @@ struct GrSurfaceDesc {
* max supported count.
*/
int fSampleCnt;
- bool fIsMipMapped; //!< Indicates if the texture has mipmaps
};
/**