aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrTypes.h
diff options
context:
space:
mode:
authorGravatar Greg Daniel <egdaniel@google.com>2017-09-05 15:45:15 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-06 14:41:18 +0000
commit52cb5fe23b8f960bb3248620c8f4e2f2957b6685 (patch)
treea1506943d9720c79c76a619203c851b28ce3c636 /include/gpu/GrTypes.h
parent38702ab43b2857f2fe06afb8dad1339d76a2fd84 (diff)
Remove isMipMapped from GrSurfaceDesc
Bug: skia: Change-Id: Id3864aad7ff9636362c9c54ef411a02af9c83fbf Reviewed-on: https://skia-review.googlesource.com/42083 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'include/gpu/GrTypes.h')
-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
};
/**