Rename LOG_ASSERT to ALOG_ASSERT DO NOT MERGE

See https://android-git.corp.google.com/g/157519

Bug: 5449033
Change-Id: I2eb298dae73ccfd8e9ee8350344d9f5c96f5c422
This commit is contained in:
Steve Block
2012-01-09 18:34:59 +00:00
parent 1c4a74c9eb
commit 8ad367c36d

View File

@@ -258,7 +258,7 @@ void GLEncoder::s_glPixelStorei(void *self, GLenum param, GLint value)
{ {
GLEncoder *ctx = (GLEncoder *)self; GLEncoder *ctx = (GLEncoder *)self;
ctx->m_glPixelStorei_enc(ctx, param, value); ctx->m_glPixelStorei_enc(ctx, param, value);
LOG_ASSERT(ctx->m_state, "GLEncoder::s_glPixelStorei"); ALOG_ASSERT(ctx->m_state, "GLEncoder::s_glPixelStorei");
ctx->m_state->setPixelStore(param, value); ctx->m_state->setPixelStore(param, value);
} }