1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/graphics/blendstate.hpp
2024-04-25 14:51:33 -03:00

21 lines
502 B
C++

#ifndef XNA_GRAPHICS_BLENDSTATE_HPP
#define XNA_GRAPHICS_BLENDSTATE_HPP
#include "../default.hpp"
namespace xna {
struct BlendRenderTarget;
class IBlendState {
public:
virtual ~IBlendState() {}
virtual bool Initialize(xna_error_nullarg) = 0;
virtual void AlphaToCoverageEnable(bool value) = 0;
virtual void IndependentBlendEnable(bool value) = 0;
virtual void RenderTargets(std::vector<BlendRenderTarget> const& value) = 0;
virtual bool Apply(xna_error_nullarg) = 0;
};
}
#endif