mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-07 10:21:30 +00:00
29 lines
683 B
C++
29 lines
683 B
C++
// Aseprite
|
|
// Copyright (C) 2001-2015 David Capello
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
|
|
#ifndef APP_RENDER_H_INCLUDED
|
|
#define APP_RENDER_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include "doc/pixel_format.h"
|
|
#include "render/render.h"
|
|
|
|
namespace app {
|
|
class Document;
|
|
|
|
class AppRender : public render::Render {
|
|
public:
|
|
AppRender();
|
|
AppRender(app::Document* doc, doc::PixelFormat pixelFormat);
|
|
|
|
void setupBackground(app::Document* doc, doc::PixelFormat pixelFormat);
|
|
};
|
|
|
|
} // namespace app
|
|
|
|
#endif // APP_RENDER_H_INCLUDED
|