From ff954ec3b2de3f0bce8aee70680469468896df7d Mon Sep 17 00:00:00 2001 From: Travis CI Date: Wed, 6 Dec 2017 22:44:25 +0000 Subject: Gem 0b181e632de887a6624259e6f2c10c917f68f480 osx/x86_64 built 'master:0b181e632de887a6624259e6f2c10c917f68f480' for osx/x86_64 --- Gem/Gem.pd_darwin | Bin 5104660 -> 5104572 bytes Gem/develop/include/Gem/Base/GemBase.h | 2 +- Gem/develop/include/Gem/Base/GemShape.h | 2 +- Gem/develop/include/Gem/Base/GemWindow.h | 14 +++++++------- Gem/develop/include/Gem/Gem/Cache.h | 4 ++-- Gem/develop/include/Gem/Gem/ContextData.h | 2 +- Gem/develop/include/Gem/Gem/Exception.h | 4 ++-- Gem/develop/include/Gem/Gem/GLStack.h | 2 +- Gem/gem_filmAVFoundation.so | Bin 67408 -> 67408 bytes Gem/gem_imageJPEG.so | Bin 52192 -> 52192 bytes Gem/gem_imageMAGICK.so | Bin 54584 -> 54584 bytes Gem/gem_imageSGI.so | Bin 59264 -> 59264 bytes Gem/gem_imageTIFF.so | Bin 68332 -> 68332 bytes Gem/gem_modelOBJ.so | Bin 90316 -> 90316 bytes Gem/gemcocoawindow.pd_darwin | Bin 36500 -> 36348 bytes Gem/gemglfw3window.pd_darwin | Bin 38240 -> 38000 bytes Gem/gemglutwindow.pd_darwin | Bin 44492 -> 44268 bytes Gem/gemsdlwindow.pd_darwin | Bin 40760 -> 40720 bytes Gem/pix_drum.pd_darwin | Bin 26304 -> 26304 bytes Gem/pix_fiducialtrack.pd_darwin | Bin 76332 -> 76332 bytes Gem/pix_hit.pd_darwin | Bin 24312 -> 24312 bytes Gem/pix_mano.pd_darwin | Bin 40512 -> 40512 bytes 22 files changed, 15 insertions(+), 15 deletions(-) (limited to 'Gem') diff --git a/Gem/Gem.pd_darwin b/Gem/Gem.pd_darwin index fff6df0..dbc9d06 100755 Binary files a/Gem/Gem.pd_darwin and b/Gem/Gem.pd_darwin differ diff --git a/Gem/develop/include/Gem/Base/GemBase.h b/Gem/develop/include/Gem/Base/GemBase.h index 9b0d362..faf490b 100644 --- a/Gem/develop/include/Gem/Base/GemBase.h +++ b/Gem/develop/include/Gem/Base/GemBase.h @@ -112,7 +112,7 @@ class GEM_EXTERN GemBase : public CPPExtern void realStopRendering(); void gem_startstopMess(int state); - void gem_renderMess(GemCache* state, GemState* state2); + void gem_renderMess(GemCache* cache, GemState* state); static inline GemBase *GetMyClass(void *data) {return((GemBase *)((Obj_header *)data)->data);} diff --git a/Gem/develop/include/Gem/Base/GemShape.h b/Gem/develop/include/Gem/Base/GemShape.h index 2878156..6f25cea 100644 --- a/Gem/develop/include/Gem/Base/GemShape.h +++ b/Gem/develop/include/Gem/Base/GemShape.h @@ -41,7 +41,7 @@ class GEM_EXTERN GemShape : public GemBase ////////// // Constructor // [in] size - A size of 0. means to just use the default (ie, 1.) - GemShape(t_floatarg size); + explicit GemShape(t_floatarg size); GemShape(); protected: diff --git a/Gem/develop/include/Gem/Base/GemWindow.h b/Gem/develop/include/Gem/Base/GemWindow.h index c69f249..b1bdc7f 100644 --- a/Gem/develop/include/Gem/Base/GemWindow.h +++ b/Gem/develop/include/Gem/Base/GemWindow.h @@ -57,10 +57,10 @@ class GEM_EXTERN GemWindow : public CPPExtern /* LATER think about detaching the output from the stack, so we can e.g. destroy a window from a mouse-callback */ void info(std::vector); void info(t_symbol*s, int, t_atom*); - void info(std::string); - void info(std::string, t_float); - void info(std::string, int i); - void info(std::string, std::string); + void info(const std::string&); + void info(const std::string&, t_float); + void info(const std::string&, int i); + void info(const std::string&, const std::string&); /* tell downstream objects to render */ void bang(void); @@ -72,7 +72,7 @@ class GEM_EXTERN GemWindow : public CPPExtern /* mouse entering window */ void entry(int devId, int state); /* keyboard buttons */ - void key(int devId, std::string, int, int state); + void key(int devId, const std::string&, int, int state); /* window resize/move */ void dimension(unsigned int, unsigned int); @@ -177,14 +177,14 @@ class GEM_EXTERN GemWindow : public CPPExtern virtual void transparentMess(bool on); /* window decoration (pre creation) */ - virtual void titleMess(std::string); + virtual void titleMess(const std::string&); virtual void borderMess(bool on); virtual void fullscreenMess(int on); virtual void offsetMess(int x, int y); /* creation/destruction */ - virtual void createMess(std::string); + virtual void createMess(const std::string&); virtual void destroyMess(void); /* post creation */ diff --git a/Gem/develop/include/Gem/Gem/Cache.h b/Gem/develop/include/Gem/Gem/Cache.h index bfb153a..d75803f 100644 --- a/Gem/develop/include/Gem/Gem/Cache.h +++ b/Gem/develop/include/Gem/Gem/Cache.h @@ -36,9 +36,9 @@ class GEM_EXTERN GemCache ////////// // Constructor - GemCache(gemhead *parent); + explicit GemCache(gemhead *parent); - GemCache(const GemCache&); + explicit GemCache(const GemCache&); ////////// // Destructor diff --git a/Gem/develop/include/Gem/Gem/ContextData.h b/Gem/develop/include/Gem/Gem/ContextData.h index 94f51b3..0b764b6 100644 --- a/Gem/develop/include/Gem/Gem/ContextData.h +++ b/Gem/develop/include/Gem/Gem/ContextData.h @@ -56,7 +56,7 @@ template /* coverity[uninit_member] we track the un-initialization ourselves */ ContextData(void) : m_haveDefaultValue(false) {;} - ContextData(ContextDataType v) : m_haveDefaultValue(true), m_defaultValue(v) {;} + explicit ContextData(ContextDataType v) : m_haveDefaultValue(true), m_defaultValue(v) {;} virtual ~ContextData() { m_ContextDataVector.clear(); diff --git a/Gem/develop/include/Gem/Gem/Exception.h b/Gem/develop/include/Gem/Gem/Exception.h index 85a91f6..76d0bbe 100644 --- a/Gem/develop/include/Gem/Gem/Exception.h +++ b/Gem/develop/include/Gem/Gem/Exception.h @@ -40,8 +40,8 @@ class GEM_EXTERN GemException { public: GemException(void); - GemException(const char*error); - GemException(const std::string&error); + explicit GemException(const char*error); + explicit GemException(const std::string&error); virtual ~GemException(void); virtual const char *what(void) const; diff --git a/Gem/develop/include/Gem/Gem/GLStack.h b/Gem/develop/include/Gem/Gem/GLStack.h index 4c9037c..49663f0 100644 --- a/Gem/develop/include/Gem/Gem/GLStack.h +++ b/Gem/develop/include/Gem/Gem/GLStack.h @@ -21,7 +21,7 @@ namespace gem { class GEM_EXTERN GLStack { public: - GLStack(bool haveValidContext=false); + explicit GLStack(bool haveValidContext=false); virtual ~GLStack(void); enum GemStackId { MODELVIEW, COLOR, TEXTURE, PROJECTION }; diff --git a/Gem/gem_filmAVFoundation.so b/Gem/gem_filmAVFoundation.so index 9926b08..aa38e25 100755 Binary files a/Gem/gem_filmAVFoundation.so and b/Gem/gem_filmAVFoundation.so differ diff --git a/Gem/gem_imageJPEG.so b/Gem/gem_imageJPEG.so index 4c6fdff..62c3b0b 100755 Binary files a/Gem/gem_imageJPEG.so and b/Gem/gem_imageJPEG.so differ diff --git a/Gem/gem_imageMAGICK.so b/Gem/gem_imageMAGICK.so index 20ddf10..f309efb 100755 Binary files a/Gem/gem_imageMAGICK.so and b/Gem/gem_imageMAGICK.so differ diff --git a/Gem/gem_imageSGI.so b/Gem/gem_imageSGI.so index 62f37fa..21e4ab5 100755 Binary files a/Gem/gem_imageSGI.so and b/Gem/gem_imageSGI.so differ diff --git a/Gem/gem_imageTIFF.so b/Gem/gem_imageTIFF.so index 708bf6a..aad7a17 100755 Binary files a/Gem/gem_imageTIFF.so and b/Gem/gem_imageTIFF.so differ diff --git a/Gem/gem_modelOBJ.so b/Gem/gem_modelOBJ.so index 64b8d10..3f0e6de 100755 Binary files a/Gem/gem_modelOBJ.so and b/Gem/gem_modelOBJ.so differ diff --git a/Gem/gemcocoawindow.pd_darwin b/Gem/gemcocoawindow.pd_darwin index df4ed5e..7ec1dc3 100755 Binary files a/Gem/gemcocoawindow.pd_darwin and b/Gem/gemcocoawindow.pd_darwin differ diff --git a/Gem/gemglfw3window.pd_darwin b/Gem/gemglfw3window.pd_darwin index 1253a3a..e21a680 100755 Binary files a/Gem/gemglfw3window.pd_darwin and b/Gem/gemglfw3window.pd_darwin differ diff --git a/Gem/gemglutwindow.pd_darwin b/Gem/gemglutwindow.pd_darwin index 8b7ae66..28e5925 100755 Binary files a/Gem/gemglutwindow.pd_darwin and b/Gem/gemglutwindow.pd_darwin differ diff --git a/Gem/gemsdlwindow.pd_darwin b/Gem/gemsdlwindow.pd_darwin index 600ac9d..59c09a4 100755 Binary files a/Gem/gemsdlwindow.pd_darwin and b/Gem/gemsdlwindow.pd_darwin differ diff --git a/Gem/pix_drum.pd_darwin b/Gem/pix_drum.pd_darwin index e4b6ae5..3738629 100755 Binary files a/Gem/pix_drum.pd_darwin and b/Gem/pix_drum.pd_darwin differ diff --git a/Gem/pix_fiducialtrack.pd_darwin b/Gem/pix_fiducialtrack.pd_darwin index b9caeb8..38bb43d 100755 Binary files a/Gem/pix_fiducialtrack.pd_darwin and b/Gem/pix_fiducialtrack.pd_darwin differ diff --git a/Gem/pix_hit.pd_darwin b/Gem/pix_hit.pd_darwin index 9af7bd0..5170c92 100755 Binary files a/Gem/pix_hit.pd_darwin and b/Gem/pix_hit.pd_darwin differ diff --git a/Gem/pix_mano.pd_darwin b/Gem/pix_mano.pd_darwin index a2077a8..ece007d 100755 Binary files a/Gem/pix_mano.pd_darwin and b/Gem/pix_mano.pd_darwin differ -- cgit v1.2.1