aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-11-30 19:05:29 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-30 19:05:40 +0000
commit25b17780787e504245bb990c2e95b8b612d64106 (patch)
tree1a7fabeb8eb3a1267b8888308cd34934ddda95df /src
parent319008054acbe00c7f40ce40055ea405c860442f (diff)
Revert "Set multitexturing image threshold for PowerVR."
This reverts commit 06c8da41eb13f46534d3acf79c5635c240b2cbe0. Reason for Original change's description: > Set multitexturing image threshold for PowerVR. > > Change-Id: I2fd928f79e005c73151a9b915879ac561c3fadaf > Reviewed-on: https://skia-review.googlesource.com/78400 > Commit-Queue: Brian Salomon <bsalomon@google.com> > Reviewed-by: Robert Phillips <robertphillips@google.com> TBR=bsalomon@google.com,robertphillips@google.com Change-Id: I949291b03657c1c337bc03e01dd908f28b78aba4 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://skia-review.googlesource.com/78540 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/gpu/gl/GrGLCaps.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp
index a31b0c0daa..134692d7ac 100644
--- a/src/gpu/gl/GrGLCaps.cpp
+++ b/src/gpu/gl/GrGLCaps.cpp
@@ -365,14 +365,6 @@ void GrGLCaps::init(const GrContextOptions& contextOptions,
// but it doesn't clearly align with Pascal vs Maxwell vs Kepler.
fShaderCaps->fDisableImageMultitexturingDstRectAreaThreshold = 150 * 150;
break;
- case kImagination_GrGLVendor:
- // Two PowerVR Rogues, Nexus Player and Chromebook Cb5-312T (PowerVR GX6250), show that
- // it is always a win to use multitexturing.
- if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
- fShaderCaps->fDisableImageMultitexturingDstRectAreaThreshold =
- std::numeric_limits<size_t>::max();
- }
- break;
default:
break;
}