git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11099 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
435 B
C++
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
|
|
|