Sha256: cae91a98ea71d868c15ea8d95b7efe23846e39481abf0bbdf27721ad3c5c05e1

Contents?: true

Size: 627 Bytes

Versions: 5

Compression:

Stored size: 627 Bytes

Contents

// -*- c++ -*-
#pragma once
#ifndef __RAYS_SRC_PAINTER_H__
#define __RAYS_SRC_PAINTER_H__


#include "rays/painter.h"
#include "opengl.h"


namespace Rays
{


	void Painter_draw (
		Painter* painter, GLenum mode, const Color& color,
		const Coord3* points,           size_t npoints,
		const uint*   indices   = NULL, size_t nindices = 0,
		const Coord3* texcoords = NULL);

	void Painter_draw (
		Painter* painter, GLenum mode,
		const Coord3* points,           size_t npoints,
		const uint*   indices   = NULL, size_t nindices = 0,
		const Color*  colors    = NULL,
		const Coord3* texcoords = NULL);


}// Rays


#endif//EOH

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rays-0.3 src/painter.h
rays-0.2.1 src/painter.h
rays-0.2 src/painter.h
rays-0.1.49 src/painter.h
rays-0.1.48 src/painter.h