diff options
author | jvanverth <jvanverth@google.com> | 2016-05-18 07:01:16 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-18 07:01:16 -0700 |
commit | 2884e9c0bd2cc9634a4b932d4142840c67227a78 (patch) | |
tree | c8c04ea788dc277d59d022008533944a4716f986 /tools/viewer/sk_app/DisplayParams.h | |
parent | 3949971e8d29345ee89461aec1ef25734ffc03f5 (diff) |
Revert of Add OpenGL context to Viewer. (patchset #7 id:120001 of https://codereview.chromium.org/1978573003/ )
Reason for revert:
sk_app/WindowContext.cpp is missing. Need to add file and resubmit.
Original issue's description:
> Add OpenGL context to Viewer.
>
> BUG=skia:
> GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1978573003
>
> Committed: https://skia.googlesource.com/skia/+/56a11e4d6f3d436a3c2497c9c9e71a117d78a93f
TBR=brianosman@google.com,bsalomon@google.com,djsollen@google.com
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Review-Url: https://codereview.chromium.org/1990893002
Diffstat (limited to 'tools/viewer/sk_app/DisplayParams.h')
-rw-r--r-- | tools/viewer/sk_app/DisplayParams.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/viewer/sk_app/DisplayParams.h b/tools/viewer/sk_app/DisplayParams.h index 8756ff0aac..836b02ec92 100644 --- a/tools/viewer/sk_app/DisplayParams.h +++ b/tools/viewer/sk_app/DisplayParams.h @@ -15,13 +15,11 @@ struct DisplayParams { DisplayParams() : fColorType(kN32_SkColorType) , fProfileType(kLinear_SkColorProfileType) - , fMSAASampleCount(0) - , fDeepColor(false) {} + , fMSAASampleCount(0) {} - SkColorType fColorType; + SkColorType fColorType; SkColorProfileType fProfileType; - int fMSAASampleCount; - bool fDeepColor; + int fMSAASampleCount; }; } // namespace sk_app |