Files
haiku-beta6/src/servers/app/server/Painter/drawing_modes/DrawingModeFactory.h
T
Stephan Aßmus 8eca754bfd support for the rest of the drawing modes
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11099 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-01-28 13:05:37 +00:00

22 lines
435 B
C++

// DrawingModeFactory.h
#ifndef DRAWING_MODE_FACTORY_H
#define DRAWING_MODE_FACTORY_H
#include <GraphicsDefs.h>
#include "DrawingMode.h"
class DrawingModeFactory {
public:
DrawingModeFactory() {}
virtual ~DrawingModeFactory() {}
static agg::DrawingMode* DrawingModeFor(drawing_mode mode,
source_alpha alphaSrcMode,
alpha_function alphaFncMode);
};
#endif // DRAWING_MODE_FACTORY_H