Sha256: cae91a98ea71d868c15ea8d95b7efe23846e39481abf0bbdf27721ad3c5c05e1
Contents?: true
Size: 627 Bytes
Versions: 8
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
8 entries across 8 versions & 1 rubygems