Chromium Code Reviews| Index: gpu/command_buffer/service/program_manager_unittest.cc |
| diff --git a/gpu/command_buffer/service/program_manager_unittest.cc b/gpu/command_buffer/service/program_manager_unittest.cc |
| index 326486108b10bc773883587fd815ae40673617d4..2aca7d4cd672bad340f8be632d2674ea7a7cca28 100644 |
| --- a/gpu/command_buffer/service/program_manager_unittest.cc |
| +++ b/gpu/command_buffer/service/program_manager_unittest.cc |
| @@ -31,6 +31,14 @@ using ::testing::SetArrayArgument; |
| using ::testing::SetArgumentPointee; |
| using ::testing::StrEq; |
| +// ANGLE now uses GLenum values directory for types |
|
Zhenyao Mo
2014/07/07 20:35:12
Add a TODO(jmadill) here, state that when ANGLE re
|
| +#if (ANGLE_SH_VERSION >= 126) |
| +#define SH_FLOAT GL_FLOAT |
| +#define SH_FLOAT_VEC2 GL_FLOAT_VEC2 |
| +#define SH_FLOAT_VEC3 GL_FLOAT_VEC3 |
| +#define SH_FLOAT_VEC4 GL_FLOAT_VEC4 |
| +#endif |
| + |
| namespace gpu { |
| namespace gles2 { |