BitMiracle.LibJpeg.Classic.Internal.my_upsampler.fullsize_upsample C# (CSharp) Метод

fullsize_upsample() приватный Метод

For full-size components, we just make color_buf[ci] point at the input buffer, and thus avoid copying any data. Note that this is safe only because sep_upsample doesn't declare the input row group "consumed" until we are done color converting and emitting it.
private fullsize_upsample ( ComponentBuffer &input_data ) : void
input_data ComponentBuffer
Результат void
        private void fullsize_upsample(ref ComponentBuffer input_data)
        {
            m_color_buf[m_currentComponent] = input_data;
            m_perComponentOffsets[m_currentComponent] = m_upsampleRowOffset;
        }