2017-05-24 07:41:30 +08:00
|
|
|
// Aseprite Render Library
|
2019-04-02 08:44:06 +08:00
|
|
|
// Copyright (c) 2019 Igara Studio S.A.
|
2017-05-24 07:41:30 +08:00
|
|
|
// Copyright (c) 2017 David Capello
|
|
|
|
//
|
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
|
|
|
|
|
|
|
#ifndef RENDER_DITHERING_H_INCLUDED
|
|
|
|
#define RENDER_DITHERING_H_INCLUDED
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "render/dithering_algorithm.h"
|
|
|
|
#include "render/dithering_matrix.h"
|
2019-04-02 08:44:06 +08:00
|
|
|
#include "render/error_diffusion.h"
|
2017-05-24 07:41:30 +08:00
|
|
|
#include "render/ordered_dither.h"
|
|
|
|
|
|
|
|
#endif
|