We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d2103 commit 424cf23Copy full SHA for 424cf23
ViroRenderer/VROShaderFactory.cpp
@@ -899,7 +899,7 @@ std::shared_ptr<VROShaderModifier> VROShaderFactory::createChromaKeyModifier(int
899
std::vector<std::string> modifierCode = {
900
"uniform highp vec3 color_to_replace;",
901
902
- "const highp float chroma_threshold_sensitivity = 0.4;",
+ "const highp float chroma_threshold_sensitivity = 0.1;",
903
"const highp float smoothing = 0.1;",
904
"highp float mask_y = 0.2989 * color_to_replace.r + 0.5866 * color_to_replace.g + 0.1145 * color_to_replace.b;",
905
"highp float mask_cr = 0.7132 * (color_to_replace.r - mask_y);",
0 commit comments