Skip to content

Commit

Permalink
Small performance optimization for mesh drawing.
Browse files Browse the repository at this point in the history
  • Loading branch information
slime73 committed Aug 24, 2024
1 parent 746aefe commit 2d606b1
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
20 changes: 14 additions & 6 deletions src/modules/graphics/Mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,12 @@ void Mesh::setupAttachedAttributes()
if (getAttachedAttributeIndex(name) != -1)
throw love::Exception("Duplicate vertex attribute name: %s", name.c_str());

attachedAttributes.push_back({name, vertexBuffer, nullptr, name, (int) i, 0, STEP_PER_VERTEX, true});
BuiltinVertexAttribute builtinattrib;
int builtinAttribIndex = -1;
if (getConstant(name.c_str(), builtinattrib))
builtinAttribIndex = (int)builtinattrib;

attachedAttributes.push_back({name, vertexBuffer, nullptr, name, (int) i, 0, STEP_PER_VERTEX, builtinAttribIndex, true});
}
}

Expand All @@ -168,6 +173,12 @@ void Mesh::finalizeAttribute(BufferAttribute &attrib) const
if (indexInBuffer < 0)
throw love::Exception("Buffer does not have a vertex attribute with name '%s'.", attrib.nameInBuffer.c_str());

BuiltinVertexAttribute builtinattrib;
if (getConstant(attrib.name.c_str(), builtinattrib))
attrib.builtinAttributeIndex = (int)builtinattrib;
else
attrib.builtinAttributeIndex = -1;

attrib.indexInBuffer = indexInBuffer;
}

Expand Down Expand Up @@ -593,14 +604,11 @@ void Mesh::drawInternal(Graphics *gfx, const Matrix4 &m, int instancecount, Buff
continue;

Buffer *buffer = attrib.buffer.get();
int attributeindex = -1;
int attributeindex = attrib.builtinAttributeIndex;

// If the attribute is one of the LOVE-defined ones, use the constant
// attribute index for it, otherwise query the index from the shader.
BuiltinVertexAttribute builtinattrib;
if (getConstant(attrib.name.c_str(), builtinattrib))
attributeindex = (int) builtinattrib;
else if (Shader::current)
if (attributeindex < 0 && Shader::current)
attributeindex = Shader::current->getVertexAttributeIndex(attrib.name);

if (attributeindex >= 0)
Expand Down
1 change: 1 addition & 0 deletions src/modules/graphics/Mesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ class Mesh : public Drawable
int indexInBuffer;
int startArrayIndex;
AttributeStep step;
int builtinAttributeIndex;
bool enabled;
};

Expand Down
13 changes: 8 additions & 5 deletions src/modules/graphics/SpriteBatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,12 @@ void SpriteBatch::attachAttribute(const std::string &name, Buffer *buffer, Mesh
newattrib.buffer = buffer;
newattrib.mesh = mesh;

BuiltinVertexAttribute builtinattrib;
if (getConstant(name.c_str(), builtinattrib))
newattrib.builtinAttributeIndex = (int)builtinattrib;
else
newattrib.builtinAttributeIndex = -1;

attached_attributes[name] = newattrib;
}

Expand Down Expand Up @@ -355,14 +361,11 @@ void SpriteBatch::draw(Graphics *gfx, const Matrix4 &m)
if (buffer->getArrayLength() < (size_t) next * 4)
throw love::Exception("Buffer with attribute '%s' attached to this SpriteBatch has too few vertices", it.first.c_str());

int attributeindex = -1;
int attributeindex = it.second.builtinAttributeIndex;

// If the attribute is one of the LOVE-defined ones, use the constant
// attribute index for it, otherwise query the index from the shader.
BuiltinVertexAttribute builtinattrib;
if (getConstant(it.first.c_str(), builtinattrib))
attributeindex = (int) builtinattrib;
else if (Shader::current)
if (attributeindex < 0 && Shader::current)
attributeindex = Shader::current->getVertexAttributeIndex(it.first);

if (attributeindex >= 0)
Expand Down
1 change: 1 addition & 0 deletions src/modules/graphics/SpriteBatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class SpriteBatch : public Drawable
StrongRef<Buffer> buffer;
StrongRef<Mesh> mesh;
int index;
int builtinAttributeIndex;
};

/**
Expand Down

0 comments on commit 2d606b1

Please sign in to comment.