summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-12-05 23:05:50 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2018-12-05 23:05:50 +0000
commit69c29a7d1fcb8eaa817602fcc881f786ac2f5912 (patch)
tree946a90c1a4bbc2179ffcf626b5914f46b484e180
parent5bd38c999f05c05677fa3e2b7e9d05941041d3bd (diff)
parent4c3137a9d3fe39d09aed664c0405bb219591cc90 (diff)
downloadnative-69c29a7d1fcb8eaa817602fcc881f786ac2f5912.tar.gz
Snap for 5165022 from 4c3137a9d3fe39d09aed664c0405bb219591cc90 to pi-b4s4-release
Change-Id: I7bb36b208115082f5f41e9456258ed939dde830c
-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);";
}