Commit f8d31b7f authored by reveman@google.com's avatar reveman@google.com

content: Fix typo from r175076 causing GL_CHROMIUM_texture_from_image not to work correctly.

BUG=124444
TBR=apatrick@chromium.org

Review URL: https://codereview.chromium.org/11779015

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175312 0039d316-1c4b-4281-b951-d872f2087c98
parent 80cefe92
...@@ -688,7 +688,7 @@ void GpuProcessHost::OnDestroyCommandBuffer(int32 surface_id) { ...@@ -688,7 +688,7 @@ void GpuProcessHost::OnDestroyCommandBuffer(int32 surface_id) {
void GpuProcessHost::OnImageCreated(const gfx::Size size) { void GpuProcessHost::OnImageCreated(const gfx::Size size) {
TRACE_EVENT0("gpu", "GpuProcessHost::OnImageCreated"); TRACE_EVENT0("gpu", "GpuProcessHost::OnImageCreated");
if (!create_image_requests_.empty()) if (create_image_requests_.empty())
return; return;
CreateImageCallback callback = create_image_requests_.front(); CreateImageCallback callback = create_image_requests_.front();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment