Blob Blame Raw
/*
    ......... 2015 Ivan Mahonin

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef _RASTERIZER_H_
#define _RASTERIZER_H_

#include <vector>

#include "clcontext.h"
#include "geometry.h"
#include "contour.h"
#include "swrender.h"


class ClRender {
private:
	ClContext &cl;
	cl_program contour_program;
	cl_kernel contour_lines_kernel;
	cl_kernel contour_fill_kernel;

	Surface *surface;
	cl_mem rows_buffer;
	cl_mem mark_buffer;
	cl_mem surface_buffer;

	size_t rows_count;
	size_t even_rows_count;
	size_t odd_rows_count;

	typedef std::pair<int, int> Row;
	std::vector<Row> rows;

public:
	ClRender(ClContext &cl);
	~ClRender();

	void send_surface(Surface *surface);
	Surface* receive_surface();
	void contour(const Contour &contour, const Rect &rect, const Color &color, bool invert, bool evenodd);
};


class SwRenderAlt {
public:
	struct Pixel {
		Real area;
		Real cover;
		Pixel(): area(), cover() { }
		void add(Real area, Real cover) { this->area += area; this->cover += cover; }
	};

private:
	std::vector<Pixel> data;

public:
	const int width;
	const int height;

	SwRenderAlt(int width, int height): data(width*height), width(width), height(height) { }

	Pixel* operator[] (int row) { return &data.front() + row*width; }
	const Pixel* operator[] (int row) const { return &data.front() + row*width; }

	void line(const Vector &p0, const Vector &p1);
};

#endif