Blame c++/freetype/src/layoutdraw.h

f4d7d6
#ifndef LAYOUTDRAW_H
f4d7d6
#define LAYOUTDRAW_H
f4d7d6
f4d7d6
f4d7d6
#include "layout.h"
f4d7d6
#include "surface.h"
f4d7d6
f4d7d6
f4d7d6
class LayoutDraw {
f4d7d6
public:
f4d7d6
	static void draw(
f4d7d6
		Surface &surface,
f4d7d6
		const IntPair2 &bounds,
f4d7d6
		const RefPtr<transformedlayout> &layout,</transformedlayout>
f4d7d6
		const Matrix &matrix,
f4d7d6
		const Color &color,
f4d7d6
		bool eraze = false,
f4d7d6
		const Vector2 &position = Vector2(),
f4d7d6
		const Real *realign = nullptr );
f4d7d6
};
f4d7d6
f4d7d6
f4d7d6
#endif
f4d7d6
f4d7d6