1 // Aseprite Render Library
2 // Copyright (c) 2001-2017 David Capello
3 //
4 // This file is released under the terms of the MIT license.
5 // Read LICENSE.txt for more information.
6 
7 #ifndef RENDER_DITHERING_METHOD_H_INCLUDED
8 #define RENDER_DITHERING_METHOD_H_INCLUDED
9 #pragma once
10 
11 namespace render {
12 
13   // Dithering algorithms
14   enum class DitheringAlgorithm {
15     None,
16     Ordered,
17     Old,
18   };
19 
20 } // namespace render
21 
22 #endif
23