mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-05 21:57:20 +00:00
Remove unused dithering property in GifOptions
This commit is contained in:
parent
b35fc87ec1
commit
5f44ac9d25
@ -19,25 +19,20 @@ namespace app {
|
||||
public:
|
||||
GifOptions(
|
||||
bool interlaced = false,
|
||||
bool loop = true,
|
||||
DitheringMethod dithering = doc::DitheringMethod::NONE)
|
||||
bool loop = true)
|
||||
: m_interlaced(interlaced)
|
||||
, m_loop(loop)
|
||||
, m_dithering(dithering) {
|
||||
, m_loop(loop) {
|
||||
}
|
||||
|
||||
bool interlaced() const { return m_interlaced; }
|
||||
bool loop() const { return m_loop; }
|
||||
doc::DitheringMethod dithering() const { return m_dithering; }
|
||||
|
||||
void setInterlaced(bool interlaced) { m_interlaced = interlaced; }
|
||||
void setLoop(bool loop) { m_loop = loop; }
|
||||
void setDithering(const doc::DitheringMethod dithering) { m_dithering = dithering; }
|
||||
|
||||
private:
|
||||
bool m_interlaced;
|
||||
bool m_loop;
|
||||
doc::DitheringMethod m_dithering;
|
||||
};
|
||||
|
||||
} // namespace app
|
||||
|
Loading…
Reference in New Issue
Block a user