Skip to content

Commit

Permalink
Renamed RenderCommandList::DrawStateBase to RenderCommandList::Drawin…
Browse files Browse the repository at this point in the history
…gState.
  • Loading branch information
egorodet committed Dec 7, 2019
1 parent ce475e4 commit 008e046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RenderCommandListBase::RenderCommandListBase(CommandQueueBase& command_queue, Re
ITT_FUNCTION_TASK();
}

void RenderCommandListBase::DrawStateBase::Reset()
void RenderCommandListBase::DrawingState::Reset()
{
ITT_FUNCTION_TASK();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class RenderCommandListBase
protected:
void ValidateDrawVertexBuffers(uint32_t draw_start_vertex, uint32_t draw_vertex_count = 0);

struct DrawStateBase
struct DrawingState
{
struct Flags
{
Expand All @@ -79,7 +79,7 @@ class RenderCommandListBase
};

const RenderPass::Ptr m_sp_pass;
DrawStateBase m_draw_state;
DrawingState m_draw_state;
};

} // namespace Methane::Graphics

0 comments on commit 008e046

Please sign in to comment.