minor style fixes.

This commit is contained in:
rachytski 2011-11-03 18:37:12 +04:00 committed by Alex Zolotarev
parent 097c92bfad
commit d8b6419d8a
6 changed files with 25 additions and 9 deletions

View file

@ -314,7 +314,7 @@ namespace yg
void Blitter::IMMDrawTexturedPrimitives::perform()
{
if (m_isDebugging)
if (isDebugging())
LOG(LINFO, ("performing IMMDrawTexturedPrimitives command"));
yg::gl::Storage blitStorage = m_resourceManager->blitStorages()->Reserve();

View file

@ -77,7 +77,7 @@ namespace yg
void GeometryBatcher::FreeStorage::perform()
{
if (m_isDebugging)
if (isDebugging())
LOG(LINFO, ("performing FreeStorage command"));
m_storagePool->Free(m_storage);
}
@ -279,7 +279,7 @@ namespace yg
void GeometryBatcher::FreeTexture::perform()
{
if (m_isDebugging)
if (isDebugging())
LOG(LINFO, ("performing FreeTexture command"));
m_texturePool->Free(m_texture);
}

View file

@ -24,7 +24,7 @@ namespace yg
void GeometryRenderer::DrawGeometry::perform()
{
if (m_isDebugging)
if (isDebugging())
LOG(LINFO, ("performing DrawGeometry command"));
m_vertices->makeCurrent();
@ -55,14 +55,13 @@ namespace yg
command->m_indices = indices;
command->m_vertices = vertices;
command->m_indicesCount = indicesCount;
command->m_isDebugging = renderQueue();
processCommand(command);
}
void GeometryRenderer::UploadData::perform()
{
if (m_isDebugging)
if (isDebugging())
LOG(LINFO, ("performing UploadData command"));
static_cast<gl::ManagedTexture*>(m_texture.get())->lock();
@ -90,7 +89,6 @@ namespace yg
shared_ptr<UploadData> uploadData(new UploadData());
uploadData->m_styles = v;
uploadData->m_texture = texture;
uploadData->m_isDebugging = renderQueue();
processCommand(uploadData);
}

View file

@ -60,7 +60,7 @@ namespace yg
void RenderStateUpdater::UpdateBackBuffer::perform()
{
if (m_isDebugging)
if (isDebugging())
LOG(LINFO, ("performing UpdateBackBuffer command"));
OGLCHECK(glFinish());

View file

@ -14,6 +14,15 @@ namespace yg
Renderer::BaseState::~BaseState()
{}
bool Renderer::Command::isDebugging() const
{
return m_isDebugging;
}
Renderer::Command::Command()
: m_isDebugging(false)
{}
Renderer::Command::~Command()
{}
@ -151,7 +160,7 @@ namespace yg
void Renderer::ClearCommand::perform()
{
if (m_isDebugging)
if (isDebugging())
LOG(LINFO, ("performing clear command"));
OGLCHECK(glClearColor(m_color.r / 255.0f,
m_color.g / 255.0f,

View file

@ -39,9 +39,18 @@ namespace yg
struct Command
{
private:
bool m_isDebugging;
public:
bool isDebugging() const;
Command();
virtual ~Command();
virtual void perform() = 0;
friend class Renderer;
};
struct Packet