Replaces occurrences of "VBO" in comments by "backend buffer". Refs cff79b421a

This was SVN commit r26835.
This commit is contained in:
vladislavbelov
2022-04-27 20:04:56 +00:00
parent d8b8128abb
commit ac60b12045
7 changed files with 41 additions and 38 deletions
+3 -3
View File
@@ -225,7 +225,7 @@ static size_t RoundStride(size_t stride)
// Re-layout by assigning offsets on a first-come first-serve basis,
// then round up to a reasonable stride.
// Backing store is also created here, VBOs are created on upload.
// Backing store is also created here, backend buffers are created on upload.
void VertexArray::Layout()
{
Free();
@@ -262,7 +262,7 @@ void VertexArray::PrepareForRendering()
}
// (Re-)Upload the attributes.
// Create the VBO if necessary.
// Create the backend buffer if necessary.
void VertexArray::Upload()
{
ENSURE(m_BackingStore);
@@ -275,7 +275,7 @@ void VertexArray::Upload()
if (!m_VB)
{
LOGERROR("Failed to allocate VBO for vertex array");
LOGERROR("Failed to allocate backend buffer for vertex array");
return;
}