Harmless warnings

This commit is contained in:
Paolo Cignoni 2018-04-06 13:27:26 +02:00
parent 6bb5e26af8
commit d1aacfa2ab
3 changed files with 7 additions and 8 deletions

View File

@ -29,7 +29,6 @@ bool MeshDocumentFromBundler(MeshDocument &md, QString filename_out,QString imag
//
QStringList image_filenames_q;
QSize size;
for(unsigned int i = 0; i < image_filenames.size(); ++i)
{
QImageReader sizeImg(QString::fromStdString(image_filenames[i]));

View File

@ -5,7 +5,7 @@
#include "meshmodel.h"
MLSceneGLSharedDataContext::MLSceneGLSharedDataContext(MeshDocument& md,vcg::QtThreadSafeMemoryInfo& gpumeminfo,bool highprecision,size_t perbatchtriangles, size_t minfacespersmoothrendering)
:QGLWidget(),_md(md),_gpumeminfo(gpumeminfo),_perbatchtriangles(perbatchtriangles),_highprecision(highprecision), _minfacessmoothrendering(minfacespersmoothrendering)
:QGLWidget(),_md(md),_gpumeminfo(gpumeminfo),_perbatchtriangles(perbatchtriangles), _minfacessmoothrendering(minfacespersmoothrendering),_highprecision(highprecision)
{
if (md.size() != 0)
throw MLException(QString("MLSceneGLSharedDataContext: MeshDocument is not empty when MLSceneGLSharedDataContext is constructed."));
@ -401,13 +401,13 @@ void MLSceneGLSharedDataContext::updateGPUMemInfo()
glGetIntegerv(GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX, &allmem);
GLint currentallocated = 0;
glGetIntegerv(GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX, &currentallocated);
GLenum errorNV = glGetError(); // purge errors
/*GLenum errorNV =*/ glGetError(); // purge errors
GLint ATI_vbo[4] = { 0, 0, 0, 0 };
glGetIntegerv(VBO_FREE_MEMORY_ATI, ATI_vbo);
GLint ATI_tex[4] = { 0, 0, 0, 0 };
glGetIntegerv(TEXTURE_FREE_MEMORY_ATI, ATI_tex);
GLenum errorATI = glGetError(); // purge errors
/*GLenum errorATI =*/ glGetError(); // purge errors
doneCurrentGLContext(ctx);
emit currentAllocatedGPUMem((int)allmem, (int)currentallocated, (int)ATI_tex[0], (int)ATI_vbo[0]);
@ -654,7 +654,7 @@ void MLPoliciesStandAloneFunctions::suggestedDefaultPerViewRenderingData(MeshMod
dt.set(MLRenderingData::PR_POINTS,false);
tmpatts.reset();
tmpatts[MLRenderingData::ATT_NAMES::ATT_VERTPOSITION] = true;
tmpatts[MLRenderingData::ATT_NAMES::ATT_VERTNORMAL] = (meshmodel->cm.FN() > minpolnumpersmoothshading);
tmpatts[MLRenderingData::ATT_NAMES::ATT_VERTNORMAL] = (size_t(meshmodel->cm.FN()) > minpolnumpersmoothshading);
tmpatts[MLRenderingData::ATT_NAMES::ATT_FACENORMAL] = !(tmpatts[MLRenderingData::ATT_NAMES::ATT_VERTNORMAL]);
tmpatts[MLRenderingData::ATT_NAMES::ATT_VERTCOLOR] = true;
if (meshmodel != NULL)

View File

@ -142,11 +142,11 @@ void PluginManager::loadPlugins(RichParameterSet& defaultGlobal)
iFilter->initGlobalParameterSet(filterAction, defaultGlobal);
if(iFilter->getClass(filterAction)==MeshFilterInterface::Generic)
throw MLException("Missing class for " +fileName+filterAction->text());
if(iFilter->getRequirements(filterAction) == MeshModel::MM_UNKNOWN)
if(iFilter->getRequirements(filterAction) == int(MeshModel::MM_UNKNOWN))
throw MLException("Missing requirements for " +fileName+filterAction->text());
if(iFilter->getPreConditions(filterAction) == MeshModel::MM_UNKNOWN)
if(iFilter->getPreConditions(filterAction) == int(MeshModel::MM_UNKNOWN))
throw MLException("Missing preconditions for "+fileName+filterAction->text());
if(iFilter->postCondition(filterAction) == MeshModel::MM_UNKNOWN )
if(iFilter->postCondition(filterAction) == int(MeshModel::MM_UNKNOWN ))
throw MLException("Missing postcondition for "+fileName+filterAction->text());
if(iFilter->filterArity(filterAction) == MeshFilterInterface::UNKNOWN_ARITY )
throw MLException("Missing Arity for " +fileName+filterAction->text());