Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Osx fixes #7

Merged
merged 4 commits into from
Jan 21, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Controls/gemlist_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( gemlist_info , t_floatarg, A_DEFFLOAT );
/////////////////////////////////////////////////////////
// Constructor
//
gemlist_info :: gemlist_info (t_floatarg arg0=0) {
gemlist_info :: gemlist_info (t_floatarg) {
m_outletRotation = outlet_new(this->x_obj, 0);
m_outletShear = outlet_new(this->x_obj, 0);
m_outletScale = outlet_new(this->x_obj, 0);
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/gemlist_matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( gemlist_matrix , t_floatarg, A_DEFFLOAT );
/////////////////////////////////////////////////////////
// Constructor
//
gemlist_matrix :: gemlist_matrix (t_floatarg arg0=0) {
gemlist_matrix :: gemlist_matrix (t_floatarg) {
m_outletMatrice = outlet_new(this->x_obj, 0);
}
/////////////////////////////////////////////////////////
Expand Down
1 change: 1 addition & 0 deletions src/Geos/slideSquares.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include "slideSquares.h"
#include "Gem/State.h"
#include "Utils/Functions.h"

typedef struct {
GLfloat X;
Expand Down
2 changes: 1 addition & 1 deletion src/Manips/alpha.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG(alpha, t_floatarg, A_DEFFLOAT);
// Constructor
//
/////////////////////////////////////////////////////////
alpha :: alpha(t_floatarg fun=0)
alpha :: alpha(t_floatarg fun)
: m_alphaState(1),
m_alphaTest(1),
m_depthtest(1)
Expand Down
2 changes: 1 addition & 1 deletion src/Pixes/pix_buf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG(pix_buf, t_floatarg, A_DEFFLOAT);
// Constructor
//
/////////////////////////////////////////////////////////
pix_buf :: pix_buf(t_floatarg a=0) :
pix_buf :: pix_buf(t_floatarg a) :
orgPixBlock(NULL),m_banged(false), m_auto(a!=0.0)
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/Pixes/pix_crop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS(pix_crop, t_float,A_DEFFLOAT,t_float, A_DEFFLOAT, t
// Constructor
//
/////////////////////////////////////////////////////////
pix_crop :: pix_crop(t_floatarg x=0, t_floatarg y=0, t_floatarg w=64, t_floatarg h=64)
pix_crop :: pix_crop(t_floatarg x, t_floatarg y, t_floatarg w, t_floatarg h)
{
m_data = NULL;
m_size = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/Pixes/pix_resize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ CPPEXTERN_NEW_WITH_TWO_ARGS(pix_resize, t_float,A_DEFFLOAT,t_float, A_DEFFLOAT);
// Constructor
//
/////////////////////////////////////////////////////////
pix_resize :: pix_resize(t_floatarg width=0, t_floatarg height=0)
pix_resize :: pix_resize(t_floatarg width, t_floatarg height)
{
dimenMess((int)width, (int)height);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Pixes/pix_sig2pix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ CPPEXTERN_NEW_WITH_TWO_ARGS(pix_sig2pix, t_float,A_DEFFLOAT,t_float, A_DEFFLOAT)
// Constructor
//
/////////////////////////////////////////////////////////
pix_sig2pix :: pix_sig2pix(t_floatarg width=0, t_floatarg height=0) : m_reqFormat(GL_RGBA_GEM)
pix_sig2pix :: pix_sig2pix(t_floatarg width, t_floatarg height) : m_reqFormat(GL_RGBA_GEM)
{

m_pixBlock.image = m_imageStruct;
Expand Down
1 change: 1 addition & 0 deletions src/Utils/any.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <stdexcept>
#include <typeinfo>
#include <algorithm>
#include <string>


namespace gem
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglAccum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_TWO_ARGS ( GEMglAccum , t_floatarg, A_DEFFLOAT, t_floatarg, A
/////////////////////////////////////////////////////////
// Constructor
//
GEMglAccum :: GEMglAccum (t_floatarg arg0=0, t_floatarg arg1=0) :
GEMglAccum :: GEMglAccum (t_floatarg arg0, t_floatarg arg1) :
op(static_cast<GLenum>(arg0)),
value(static_cast<GLfloat>(arg1))
{
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglActiveTextureARB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglActiveTextureARB , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglActiveTextureARB :: GEMglActiveTextureARB (t_floatarg arg0=0) :
GEMglActiveTextureARB :: GEMglActiveTextureARB (t_floatarg arg0) :
texUnit(static_cast<GLenum>(arg0))
{
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("texUnit"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglAlphaFunc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_TWO_ARGS ( GEMglAlphaFunc , t_floatarg, A_DEFFLOAT, t_floatar
/////////////////////////////////////////////////////////
// Constructor
//
GEMglAlphaFunc :: GEMglAlphaFunc (t_floatarg arg0=0, t_floatarg arg1=0) :
GEMglAlphaFunc :: GEMglAlphaFunc (t_floatarg arg0, t_floatarg arg1) :
func(static_cast<GLenum>(arg0)),
ref(static_cast<GLclampf>(arg1))
{
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglArrayElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglArrayElement , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglArrayElement :: GEMglArrayElement (t_floatarg arg0=0) :
GEMglArrayElement :: GEMglArrayElement (t_floatarg arg0) :
i(static_cast<GLint>(arg0))
{
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("i"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglBindProgramARB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CPPEXTERN_NEW_WITH_TWO_ARGS ( GEMglBindProgramARB , t_floatarg, A_DEFFLOAT, t_fl
/////////////////////////////////////////////////////////
// Constructor
//
GEMglBindProgramARB :: GEMglBindProgramARB (t_floatarg arg0=0, t_floatarg arg1=0) :
GEMglBindProgramARB :: GEMglBindProgramARB (t_floatarg arg0, t_floatarg arg1) :
target(static_cast<GLenum>(arg0)),
program(static_cast<GLuint>(arg1))
{
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglBindTexture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_TWO_ARGS ( GEMglBindTexture , t_floatarg, A_DEFFLOAT, t_float
/////////////////////////////////////////////////////////
// Constructor
//
GEMglBindTexture :: GEMglBindTexture (t_floatarg arg0=0, t_floatarg arg1=0) :
GEMglBindTexture :: GEMglBindTexture (t_floatarg arg0, t_floatarg arg1) :
target(static_cast<GLenum>(arg0)),
texture(static_cast<GLuint>(arg1))
{
Expand Down
3 changes: 1 addition & 2 deletions src/openGL/GEMglBitmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS ( GEMglBitmap , t_floatarg, A_DEFFLOAT, t_floatarg,
/////////////////////////////////////////////////////////
// Constructor
//
GEMglBitmap :: GEMglBitmap (t_float arg0=0, t_float arg1=0,
t_float arg2=1, t_float arg3=1) :
GEMglBitmap :: GEMglBitmap (t_float arg0, t_float arg1, t_float arg2, t_float arg3) :
xorig(static_cast<GLfloat>(arg0)),
yorig(static_cast<GLfloat>(arg1)),
xmove(static_cast<GLfloat>(arg2)),
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglBlendEquation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglBlendEquation , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglBlendEquation :: GEMglBlendEquation (t_floatarg arg0=0) :
GEMglBlendEquation :: GEMglBlendEquation (t_floatarg arg0) :
mode(static_cast<GLenum>(arg0))
{
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("mode"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglCallList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglCallList , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglCallList :: GEMglCallList (t_floatarg arg0=0) : list(static_cast<GLuint>(arg0)) {
GEMglCallList :: GEMglCallList (t_floatarg arg0) : list(static_cast<GLuint>(arg0)) {
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("gllist"));
}
/////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglClear.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglClear , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglClear :: GEMglClear (t_floatarg arg0=0) :
GEMglClear :: GEMglClear (t_floatarg arg0) :
mask(static_cast<GLbitfield>(arg0))
{
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("mask"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglClearAccum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS ( GEMglClearAccum , t_floatarg, A_DEFFLOAT, t_float
/////////////////////////////////////////////////////////
// Constructor
//
GEMglClearAccum :: GEMglClearAccum (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0, t_floatarg arg3=0) :
GEMglClearAccum :: GEMglClearAccum (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2, t_floatarg arg3) :
red(static_cast<GLfloat>(arg0)),
green(static_cast<GLfloat>(arg1)),
blue(static_cast<GLfloat>(arg2)),
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglClearColor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS ( GEMglClearColor , t_floatarg, A_DEFFLOAT, t_float
/////////////////////////////////////////////////////////
// Constructor
//
GEMglClearColor :: GEMglClearColor (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0, t_floatarg arg3=0) :
GEMglClearColor :: GEMglClearColor (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2, t_floatarg arg3) :
red(static_cast<GLclampf>(arg0)),
green(static_cast<GLclampf>(arg1)),
blue(static_cast<GLclampf>(arg2)),
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglClearDepth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglClearDepth , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglClearDepth :: GEMglClearDepth (t_floatarg arg0=0) :
GEMglClearDepth :: GEMglClearDepth (t_floatarg arg0) :
depth(static_cast<GLclampd>(arg0))
{
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("depth"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglClearIndex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglClearIndex , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglClearIndex :: GEMglClearIndex (t_floatarg arg0=0) :
GEMglClearIndex :: GEMglClearIndex (t_floatarg arg0) :
c(static_cast<GLfloat>(arg0))
{
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("c"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglClearStencil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_ONE_ARG ( GEMglClearStencil , t_floatarg, A_DEFFLOAT);
/////////////////////////////////////////////////////////
// Constructor
//
GEMglClearStencil :: GEMglClearStencil (t_floatarg arg0=0) :
GEMglClearStencil :: GEMglClearStencil (t_floatarg arg0) :
s(static_cast<GLint>(arg0))
{
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("s"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglClipPlane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS ( GEMglClipPlane , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglClipPlane :: GEMglClipPlane (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0, t_floatarg arg3=0) {
GEMglClipPlane :: GEMglClipPlane (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2, t_floatarg arg3) {
vMess(arg0, arg1, arg2, arg3);
m_inlet[0] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("plane"));
m_inlet[1] = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3b.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3b , t_floatarg, A_DEFFLOAT, t_floatar
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3b :: GEMglColor3b (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3b :: GEMglColor3b (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLbyte>(arg0)),
green(static_cast<GLbyte>(arg1)),
blue(static_cast<GLbyte>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3bv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3bv , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3bv :: GEMglColor3bv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3bv :: GEMglColor3bv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3d , t_floatarg, A_DEFFLOAT, t_floatar
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3d :: GEMglColor3d (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3d :: GEMglColor3d (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLdouble>(arg0)),
green(static_cast<GLdouble>(arg1)),
blue(static_cast<GLdouble>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3dv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3dv , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3dv :: GEMglColor3dv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3dv :: GEMglColor3dv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3f.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3f , t_floatarg, A_DEFFLOAT, t_floatar
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3f :: GEMglColor3f (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3f :: GEMglColor3f (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLfloat>(arg0)),
green(static_cast<GLfloat>(arg1)),
blue(static_cast<GLfloat>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3fv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3fv , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3fv :: GEMglColor3fv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3fv :: GEMglColor3fv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3i.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3i , t_floatarg, A_DEFFLOAT, t_floatar
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3i :: GEMglColor3i (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3i :: GEMglColor3i (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLint>(arg0)),
green(static_cast<GLint>(arg1)),
blue(static_cast<GLint>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3iv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3iv , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3iv :: GEMglColor3iv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3iv :: GEMglColor3iv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3s.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3s , t_floatarg, A_DEFFLOAT, t_floatar
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3s :: GEMglColor3s (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3s :: GEMglColor3s (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLshort>(arg0)),
green(static_cast<GLshort>(arg1)),
blue(static_cast<GLshort>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3sv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3sv , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3sv :: GEMglColor3sv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3sv :: GEMglColor3sv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3ub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3ub , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3ub :: GEMglColor3ub (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3ub :: GEMglColor3ub (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLubyte>(arg0)),
green(static_cast<GLubyte>(arg1)),
blue(static_cast<GLubyte>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3ubv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3ubv , t_floatarg, A_DEFFLOAT, t_float
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3ubv :: GEMglColor3ubv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3ubv :: GEMglColor3ubv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3ui , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3ui :: GEMglColor3ui (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3ui :: GEMglColor3ui (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLuint>(arg0)),
green(static_cast<GLuint>(arg1)),
blue(static_cast<GLuint>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3uiv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3uiv , t_floatarg, A_DEFFLOAT, t_float
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3uiv :: GEMglColor3uiv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3uiv :: GEMglColor3uiv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3us.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3us , t_floatarg, A_DEFFLOAT, t_floata
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3us :: GEMglColor3us (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) :
GEMglColor3us :: GEMglColor3us (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) :
red(static_cast<GLushort>(arg0)),
green(static_cast<GLushort>(arg1)),
blue(static_cast<GLushort>(arg2))
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor3usv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_THREE_ARGS ( GEMglColor3usv , t_floatarg, A_DEFFLOAT, t_float
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor3usv :: GEMglColor3usv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0) {
GEMglColor3usv :: GEMglColor3usv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2) {
vMess(arg0, arg1, arg2);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor4b.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS ( GEMglColor4b , t_floatarg, A_DEFFLOAT, t_floatarg
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor4b :: GEMglColor4b (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0, t_floatarg arg3=0) :
GEMglColor4b :: GEMglColor4b (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2, t_floatarg arg3) :
red(static_cast<GLbyte>(arg0)),
green(static_cast<GLbyte>(arg1)),
blue(static_cast<GLbyte>(arg2)),
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor4bv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS ( GEMglColor4bv , t_floatarg, A_DEFFLOAT, t_floatar
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor4bv :: GEMglColor4bv (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0, t_floatarg arg3=0) {
GEMglColor4bv :: GEMglColor4bv (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2, t_floatarg arg3) {
vMess(arg0, arg1, arg2, arg3);
m_inlet = inlet_new(this->x_obj, &this->x_obj->ob_pd, &s_float, gensym("v"));
}
Expand Down
2 changes: 1 addition & 1 deletion src/openGL/GEMglColor4d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CPPEXTERN_NEW_WITH_FOUR_ARGS ( GEMglColor4d , t_floatarg, A_DEFFLOAT, t_floatarg
/////////////////////////////////////////////////////////
// Constructor
//
GEMglColor4d :: GEMglColor4d (t_floatarg arg0=0, t_floatarg arg1=0, t_floatarg arg2=0, t_floatarg arg3=0) :
GEMglColor4d :: GEMglColor4d (t_floatarg arg0, t_floatarg arg1, t_floatarg arg2, t_floatarg arg3) :
red(static_cast<GLdouble>(arg0)),
green(static_cast<GLdouble>(arg1)),
blue(static_cast<GLdouble>(arg2)),
Expand Down
Loading