]> git.sesse.net Git - movit/blobdiff - ycbcr_conversion_effect.h
Convert a loop to range-based for.
[movit] / ycbcr_conversion_effect.h
index ce456ceda7ebe06b0653bbbd341ad245be5865b4..752eb43934d5682f00651dc8ededb5626f07432c 100644 (file)
@@ -26,7 +26,7 @@ public:
        std::string output_fragment_shader() override;
        void set_gl_state(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num) override;
        AlphaHandling alpha_handling() const override { return DONT_CARE_ALPHA_TYPE; }
-       bool one_to_one_sampling() const override { return true; }
+       bool strong_one_to_one_sampling() const override { return true; }
 
        // Should not be called by end users; call
        // EffectChain::change_ycbcr_output_format() instead.