| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_unittest.h" | 5 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest.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 1468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1479 SetupExpectationsForEnableDisable(GL_BLEND, true); | 1479 SetupExpectationsForEnableDisable(GL_BLEND, true); |
| 1480 } | 1480 } |
| 1481 | 1481 |
| 1482 protected: | 1482 protected: |
| 1483 Enable cmds_[3]; | 1483 Enable cmds_[3]; |
| 1484 int entries_per_cmd_; | 1484 int entries_per_cmd_; |
| 1485 }; | 1485 }; |
| 1486 | 1486 |
| 1487 TEST_P(GLES3DecoderTest, BeginInvalidTargetQueryFails) { | 1487 TEST_P(GLES3DecoderTest, BeginInvalidTargetQueryFails) { |
| 1488 BeginQueryEXT begin_cmd; | 1488 BeginQueryEXT begin_cmd; |
| 1489 begin_cmd.Init(GL_SAMPLES_PASSED, | 1489 begin_cmd.Init(0xdeadbeef, |
| 1490 kNewClientId, | 1490 kNewClientId, |
| 1491 kSharedMemoryId, | 1491 kSharedMemoryId, |
| 1492 kSharedMemoryOffset); | 1492 kSharedMemoryOffset); |
| 1493 EXPECT_EQ(error::kNoError, ExecuteCmd(begin_cmd)); | 1493 EXPECT_EQ(error::kNoError, ExecuteCmd(begin_cmd)); |
| 1494 EXPECT_EQ(GL_INVALID_ENUM, GetGLError()); | 1494 EXPECT_EQ(GL_INVALID_ENUM, GetGLError()); |
| 1495 } | 1495 } |
| 1496 | 1496 |
| 1497 | 1497 |
| 1498 TEST_P(GLES3DecoderTest, BindTransformFeedbackValidArgs) { | 1498 TEST_P(GLES3DecoderTest, BindTransformFeedbackValidArgs) { |
| 1499 EXPECT_CALL(*gl_, BindTransformFeedback(GL_TRANSFORM_FEEDBACK, | 1499 EXPECT_CALL(*gl_, BindTransformFeedback(GL_TRANSFORM_FEEDBACK, |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1816 INSTANTIATE_TEST_CASE_P(Service, GLES3DecoderWithShaderTest, ::testing::Bool()); | 1816 INSTANTIATE_TEST_CASE_P(Service, GLES3DecoderWithShaderTest, ::testing::Bool()); |
| 1817 | 1817 |
| 1818 INSTANTIATE_TEST_CASE_P(Service, GLES3DecoderManualInitTest, ::testing::Bool()); | 1818 INSTANTIATE_TEST_CASE_P(Service, GLES3DecoderManualInitTest, ::testing::Bool()); |
| 1819 | 1819 |
| 1820 INSTANTIATE_TEST_CASE_P(Service, | 1820 INSTANTIATE_TEST_CASE_P(Service, |
| 1821 GLES3DecoderRGBBackbufferTest, | 1821 GLES3DecoderRGBBackbufferTest, |
| 1822 ::testing::Bool()); | 1822 ::testing::Bool()); |
| 1823 | 1823 |
| 1824 } // namespace gles2 | 1824 } // namespace gles2 |
| 1825 } // namespace gpu | 1825 } // namespace gpu |
| OLD | NEW |