mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 01:39:23 +02:00
Fixing warnings from jenkins
This commit is contained in:
parent
ff24a99032
commit
e5df356774
2 changed files with 0 additions and 2 deletions
|
@ -617,7 +617,6 @@ void FBXReader::buildModelMesh(FBXMesh& extractedMesh, const QString& url) {
|
||||||
qWarning() << "Unexpected tangents in " << url;
|
qWarning() << "Unexpected tangents in " << url;
|
||||||
}
|
}
|
||||||
const auto normalsAndTangentsSize = normalsSize + tangentsSize;
|
const auto normalsAndTangentsSize = normalsSize + tangentsSize;
|
||||||
const int normalsAndTangentsStride = 2 * normalElement.getSize();
|
|
||||||
|
|
||||||
// Color attrib
|
// Color attrib
|
||||||
const auto colorElement = FBX_COLOR_ELEMENT;
|
const auto colorElement = FBX_COLOR_ELEMENT;
|
||||||
|
|
|
@ -61,7 +61,6 @@ GLBuffer* GL45Backend::syncGPUObject(const Buffer& buffer) {
|
||||||
|
|
||||||
|
|
||||||
bool GL45Backend::bindResourceBuffer(uint32_t slot, const BufferPointer& buffer) {
|
bool GL45Backend::bindResourceBuffer(uint32_t slot, const BufferPointer& buffer) {
|
||||||
// GLBuffer* object = syncGPUObject((*buffer));
|
|
||||||
auto bo = getBufferIDUnsynced((*buffer));
|
auto bo = getBufferIDUnsynced((*buffer));
|
||||||
if (bo) {
|
if (bo) {
|
||||||
glBindBufferBase(GL_SHADER_STORAGE_BUFFER, slot, bo);
|
glBindBufferBase(GL_SHADER_STORAGE_BUFFER, slot, bo);
|
||||||
|
|
Loading…
Reference in a new issue