Skip to content

Commit

Permalink
xrRenderDX9/BufferUtils.cpp: commented unused function parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY authored and eagleivg committed Nov 11, 2019
1 parent 44fa33f commit 333ab2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Layers/xrRenderDX9/BufferUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void* VertexStagingBuffer::Map(
return m_HostBuffer;
}

void VertexStagingBuffer::Unmap(bool doFlush /*= false*/)
void VertexStagingBuffer::Unmap(bool /*doFlush = false*/)
{
VERIFY(IsValid());
R_CHK(m_DeviceBuffer->Unlock());
Expand Down Expand Up @@ -157,7 +157,7 @@ void* IndexStagingBuffer::Map(
return m_HostBuffer;
}

void IndexStagingBuffer::Unmap(bool doFlush /*= false*/)
void IndexStagingBuffer::Unmap(bool /*doFlush = false*/)
{
VERIFY(IsValid());
R_CHK(m_DeviceBuffer->Unlock());
Expand Down

0 comments on commit 333ab2c

Please sign in to comment.