summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-11-19 23:01:07 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2018-11-19 23:01:07 +0000
commit9756f7a92e963a302cb8a94cd78397688ff6f14f (patch)
tree946a90c1a4bbc2179ffcf626b5914f46b484e180
parent253a8853014262a77fb33e6571f3b18520b40dae (diff)
parent4c3137a9d3fe39d09aed664c0405bb219591cc90 (diff)
downloadnative-9756f7a92e963a302cb8a94cd78397688ff6f14f.tar.gz
Snap for 5140258 from 4c3137a9d3fe39d09aed664c0405bb219591cc90 to pi-b4s4-release
Change-Id: Id2ab86d1eb4877550f8e8887d06626987f4e9b6d
-rw-r--r--services/surfaceflinger/RenderEngine/ProgramCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/RenderEngine/ProgramCache.cpp b/services/surfaceflinger/RenderEngine/ProgramCache.cpp
index 338d27c2e4..9dc6858566 100644
--- a/services/surfaceflinger/RenderEngine/ProgramCache.cpp
+++ b/services/surfaceflinger/RenderEngine/ProgramCache.cpp
@@ -611,7 +611,7 @@ String8 ProgramCache::generateFragmentShader(const Key& needs) {
fs << "void main(void) {" << indent;
if (needs.isTexturing()) {
- fs << "gl_FragColor = clamp(texture2D(sampler, outTexCoords), 0.0, 1.0);";
+ fs << "gl_FragColor = texture2D(sampler, outTexCoords);";
if (needs.isY410BT2020()) {
fs << "gl_FragColor.rgb = convertY410BT2020(gl_FragColor.rgb);";
}