Files
flenser/dw/imgrenderer.cc
ADAM David Alan Martin 9dbf5ee536
Some checks failed
CI / ubuntu-latest-html-tests (push) Has been cancelled
CI / ubuntu-latest-no-tls (push) Has been cancelled
CI / ubuntu-latest-mbedtls2 (push) Has been cancelled
CI / ubuntu-latest-openssl-3 (push) Has been cancelled
CI / ubuntu-latest-with-old-std (push) Has been cancelled
CI / ubuntu-20-04-openssl-1-1 (push) Has been cancelled
CI / alpine-mbedtls-3_6_0 (push) Has been cancelled
CI / macOS-13-openssl-1-1 (push) Has been cancelled
CI / macOS-13-openssl-3 (push) Has been cancelled
CI / freebsd-14-openssl-3 (push) Has been cancelled
CI / windows-mbedtls (push) Has been cancelled
This one pushes ownership a lot wider.
2025-08-09 12:29:05 -04:00

64 lines
1.3 KiB
C++

/*
* Dillo Widget
*
* Copyright 2013 Sebastian Geerken <sgeerken@dillo.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "core.hh"
namespace dw {
namespace core {
using namespace lout::container;
using namespace lout::object;
void ImgRendererDist::setBuffer (core::Imgbuf *buffer, bool resize)
{
for( auto &tp: children )
{
tp->setBuffer (buffer, resize);
}
}
void ImgRendererDist::drawRow (int row)
{
for( auto &tp: children )
{
tp->drawRow (row);
}
}
void ImgRendererDist::finish ()
{
for( auto &tp: children )
{
tp->finish ();
}
}
void ImgRendererDist::fatal ()
{
for( auto &tp: children )
{
tp->fatal ();
}
}
} // namespace core
} // namespace dw