mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-24 21:39:51 +00:00
- Added doc::BlendMode enum and doc::BlendFunc type - Renamed LayerImage::getBlendMode() -> blendMode() - BLEND_MODE_COPY is BlendMode::SRC now - BLEND_MODE_NORMAL is BlendMode::NORMAL now - Added app::cmd::SetLayerBlendMode
18 lines
422 B
C
18 lines
422 B
C
// Aseprite Document Library
|
|
// Copyright (c) 2001-2015 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef DOC_BLEND_INTERNALS_H_INCLUDED
|
|
#define DOC_BLEND_INTERNALS_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include "../../third_party/pixman/pixman/pixman-combine32.h"
|
|
|
|
#if !defined(MUL_UN8) || !defined(DIV_UN8)
|
|
#error Invalid Pixman library
|
|
#endif
|
|
|
|
#endif
|