-
Notifications
You must be signed in to change notification settings - Fork 86
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
Use glm #334
base: 2.4
Are you sure you want to change the base?
Use glm #334
Conversation
cbb8a62
to
b2052eb
Compare
@@ -116,7 +123,7 @@ | |||
{ | |||
logDebugMessage(0,":"); | |||
for (i = 0; i < vertexCount; i++) | |||
logDebugMessage(0," %i", (int)((afvec3*)vertices[i] - mesh->getVertices())); | |||
logDebugMessage(0," %i", vertices[i] - mesh->getVertices()); |
Check failure
Code scanning / CodeQL
Wrong type of arguments to formatting function High
@@ -150,28 +154,30 @@ | |||
{ | |||
logDebugMessage(0,":"); | |||
for (i = 0; i < vertexCount; i++) | |||
logDebugMessage(0," %i", (int)((afvec3*)vertices[i] - mesh->getVertices())); | |||
logDebugMessage(0," %i", vertices[i] - mesh->getVertices()); |
Check failure
Code scanning / CodeQL
Wrong type of arguments to formatting function High
if (fabsf(cross + plane[3]) > 1.0e-3) | ||
{ | ||
logDebugMessage(1,"non-planar mesh face (%f)", cross + plane[3]); | ||
if ((debugLevel >= 3) && (mesh != NULL)) | ||
{ | ||
logDebugMessage(0,":"); | ||
for (i = 0; i < vertexCount; i++) | ||
logDebugMessage(0," %i", (int)((afvec3*)vertices[i] - mesh->getVertices())); | ||
logDebugMessage(0," %i", vertices[i] - mesh->getVertices()); |
Check failure
Code scanning / CodeQL
Wrong type of arguments to formatting function High
No description provided.