OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" | 5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 | 187 |
188 void SetUp() override { | 188 void SetUp() override { |
189 InitState init; | 189 InitState init; |
190 init.gl_version = "opengl es 3.1"; | 190 init.gl_version = "opengl es 3.1"; |
191 init.has_alpha = true; | 191 init.has_alpha = true; |
192 init.has_depth = true; | 192 init.has_depth = true; |
193 init.request_alpha = true; | 193 init.request_alpha = true; |
194 init.request_depth = true; | 194 init.request_depth = true; |
195 init.bind_generates_resource = true; | 195 init.bind_generates_resource = true; |
196 init.extensions = "GL_NV_path_rendering"; | 196 init.extensions = "GL_NV_path_rendering"; |
197 InitDecoder(init); | 197 base::CommandLine command_line(0, NULL); |
| 198 command_line.AppendSwitch(switches::kEnableGLPathRendering); |
| 199 InitDecoderWithCommandLine(init, &command_line); |
198 | 200 |
199 EXPECT_CALL(*gl_, GenPathsNV(1)) | 201 EXPECT_CALL(*gl_, GenPathsNV(1)) |
200 .WillOnce(Return(kServicePathId)) | 202 .WillOnce(Return(kServicePathId)) |
201 .RetiresOnSaturation(); | 203 .RetiresOnSaturation(); |
202 cmds::GenPathsCHROMIUM cmd; | 204 cmds::GenPathsCHROMIUM cmd; |
203 cmd.Init(client_path_id_, 1); | 205 cmd.Init(client_path_id_, 1); |
204 EXPECT_EQ(error::kNoError, ExecuteCmd(cmd)); | 206 EXPECT_EQ(error::kNoError, ExecuteCmd(cmd)); |
205 | 207 |
206 // The tests use client_path_id_ to test all sorts of drawing. The NVPR API | 208 // The tests use client_path_id_ to test all sorts of drawing. The NVPR API |
207 // behaves differently with a path name that is "used" but not which does | 209 // behaves differently with a path name that is "used" but not which does |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 GLES2DecoderTestWithCHROMIUMFramebufferMixedSamples() {} | 548 GLES2DecoderTestWithCHROMIUMFramebufferMixedSamples() {} |
547 void SetUp() override { | 549 void SetUp() override { |
548 InitState init; | 550 InitState init; |
549 init.gl_version = "opengl es 3.1"; | 551 init.gl_version = "opengl es 3.1"; |
550 init.has_alpha = true; | 552 init.has_alpha = true; |
551 init.has_depth = true; | 553 init.has_depth = true; |
552 init.request_alpha = true; | 554 init.request_alpha = true; |
553 init.request_depth = true; | 555 init.request_depth = true; |
554 init.bind_generates_resource = true; | 556 init.bind_generates_resource = true; |
555 init.extensions = "GL_NV_path_rendering GL_NV_framebuffer_mixed_samples "; | 557 init.extensions = "GL_NV_path_rendering GL_NV_framebuffer_mixed_samples "; |
556 InitDecoder(init); | 558 base::CommandLine command_line(0, NULL); |
| 559 command_line.AppendSwitch(switches::kEnableGLPathRendering); |
| 560 InitDecoderWithCommandLine(init, &command_line); |
557 } | 561 } |
558 }; | 562 }; |
559 | 563 |
560 INSTANTIATE_TEST_CASE_P(Service, | 564 INSTANTIATE_TEST_CASE_P(Service, |
561 GLES2DecoderTestWithCHROMIUMFramebufferMixedSamples, | 565 GLES2DecoderTestWithCHROMIUMFramebufferMixedSamples, |
562 ::testing::Bool()); | 566 ::testing::Bool()); |
563 | 567 |
564 TEST_P(GLES2DecoderTestWithCHROMIUMPathRendering, GenDeletePaths) { | 568 TEST_P(GLES2DecoderTestWithCHROMIUMPathRendering, GenDeletePaths) { |
565 static GLuint kFirstClientID = client_path_id_ + 88; | 569 static GLuint kFirstClientID = client_path_id_ + 88; |
566 static GLsizei kPathCount = 58; | 570 static GLsizei kPathCount = 58; |
(...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1721 SetBucketAsCString(kBucketId, kBadName1); | 1725 SetBucketAsCString(kBucketId, kBadName1); |
1722 cmd.Init(client_program_id_, kLocation, kBucketId); | 1726 cmd.Init(client_program_id_, kLocation, kBucketId); |
1723 EXPECT_EQ(error::kNoError, ExecuteCmd(cmd)); | 1727 EXPECT_EQ(error::kNoError, ExecuteCmd(cmd)); |
1724 EXPECT_EQ(GL_INVALID_OPERATION, GetGLError()); | 1728 EXPECT_EQ(GL_INVALID_OPERATION, GetGLError()); |
1725 } | 1729 } |
1726 | 1730 |
1727 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions_autog
en.h" | 1731 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions_autog
en.h" |
1728 | 1732 |
1729 } // namespace gles2 | 1733 } // namespace gles2 |
1730 } // namespace gpu | 1734 } // namespace gpu |
OLD | NEW |