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

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

Issue 295803002: Moves responsibility for shader resource string generation to ANGLE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DCHECK for string length Created 6 years, 7 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
« no previous file with comments | « gpu/command_buffer/service/shader_translator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/shader_translator_unittest.cc
diff --git a/gpu/command_buffer/service/shader_translator_unittest.cc b/gpu/command_buffer/service/shader_translator_unittest.cc
index 4002c346fd3df1e35719cc1d9474a7e571cf4d98..233b412024cd73cf9ffcd78c7f976f1c2235c434 100644
--- a/gpu/command_buffer/service/shader_translator_unittest.cc
+++ b/gpu/command_buffer/service/shader_translator_unittest.cc
@@ -245,13 +245,13 @@ TEST_F(ShaderTranslatorTest, OptionsString) {
SH_EMULATE_BUILT_IN_FUNCTIONS));
std::string options_1(
- translator_1->GetStringForOptionsThatWouldEffectCompilation());
+ translator_1->GetStringForOptionsThatWouldAffectCompilation());
std::string options_2(
- translator_1->GetStringForOptionsThatWouldEffectCompilation());
+ translator_1->GetStringForOptionsThatWouldAffectCompilation());
std::string options_3(
- translator_2->GetStringForOptionsThatWouldEffectCompilation());
+ translator_2->GetStringForOptionsThatWouldAffectCompilation());
std::string options_4(
- translator_3->GetStringForOptionsThatWouldEffectCompilation());
+ translator_3->GetStringForOptionsThatWouldAffectCompilation());
EXPECT_EQ(options_1, options_2);
EXPECT_NE(options_1, options_3);
« no previous file with comments | « gpu/command_buffer/service/shader_translator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698