Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(667)

Unified Diff: gpu/command_buffer/service/gles2_cmd_copy_tex_image.cc

Issue 2259523002: Fix gles2_conform_test failures when Mac switching to core profile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/gles2_cmd_copy_tex_image.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_copy_tex_image.cc b/gpu/command_buffer/service/gles2_cmd_copy_tex_image.cc
index b9e61300d46424e7b465aae098348904b062877d..aa3adba67e7b71a11b3ece250506d2d52e037fdd 100644
--- a/gpu/command_buffer/service/gles2_cmd_copy_tex_image.cc
+++ b/gpu/command_buffer/service/gles2_cmd_copy_tex_image.cc
@@ -139,7 +139,7 @@ void CopyTexImageResourceManager::Destroy() {
initialized_ = false;
}
-void CopyTexImageResourceManager::DoCopyTexImage2DToLUMAComatabilityTexture(
+void CopyTexImageResourceManager::DoCopyTexImage2DToLUMACompatibilityTexture(
const gles2::GLES2Decoder* decoder,
GLuint dest_texture,
GLenum dest_texture_target,
@@ -162,13 +162,13 @@ void CopyTexImageResourceManager::DoCopyTexImage2DToLUMAComatabilityTexture(
feature_info_.get(), internal_format);
glTexImage2D(dest_target, level, adjusted_internal_format, width, height, 0,
adjusted_format, luma_type, nullptr);
- DoCopyTexSubImage2DToLUMAComatabilityTexture(
+ DoCopyTexSubImage2DToLUMACompatibilityTexture(
decoder, dest_texture, dest_texture_target, dest_target, luma_format,
luma_type, level, 0, 0, x, y, width, height, source_framebuffer,
source_framebuffer_internal_format);
}
-void CopyTexImageResourceManager::DoCopyTexSubImage2DToLUMAComatabilityTexture(
+void CopyTexImageResourceManager::DoCopyTexSubImage2DToLUMACompatibilityTexture(
const gles2::GLES2Decoder* decoder,
GLuint dest_texture,
GLenum dest_texture_target,
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_copy_tex_image.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698