OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // Tests for the Command Buffer Helper. | 5 // Tests for the Command Buffer Helper. |
6 | 6 |
7 #include "gpu/command_buffer/client/gles2_implementation.h" | 7 #include "gpu/command_buffer/client/gles2_implementation.h" |
8 #include "gpu/command_buffer/common/command_buffer.h" | 8 #include "gpu/command_buffer/common/command_buffer.h" |
9 #include "gpu/GLES2/gles2_command_buffer.h" | 9 #include "gpu/GLES2/gles2_command_buffer.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 } | 30 } |
31 | 31 |
32 virtual Buffer GetRingBuffer() { | 32 virtual Buffer GetRingBuffer() { |
33 return ring_buffer_buffer_; | 33 return ring_buffer_buffer_; |
34 } | 34 } |
35 | 35 |
36 virtual State GetState() { | 36 virtual State GetState() { |
37 return state_; | 37 return state_; |
38 } | 38 } |
39 | 39 |
40 virtual State Flush(int32 put_offset) { | 40 virtual void Flush(int32 put_offset) { |
| 41 FlushSync(put_offset); |
| 42 } |
| 43 |
| 44 virtual State FlushSync(int32 put_offset) { |
41 state_.put_offset = put_offset; | 45 state_.put_offset = put_offset; |
42 state_.get_offset = put_offset; | 46 state_.get_offset = put_offset; |
43 OnFlush(transfer_buffer_buffer_.ptr); | 47 OnFlush(transfer_buffer_buffer_.ptr); |
44 | 48 |
45 return state_; | 49 return state_; |
46 } | 50 } |
47 | 51 |
48 virtual void SetGetOffset(int32 get_offset) { | 52 virtual void SetGetOffset(int32 get_offset) { |
49 state_.get_offset = get_offset; | 53 state_.get_offset = get_offset; |
50 } | 54 } |
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 EXPECT_EQ(static_cast<GLenum>(GL_INVALID_ENUM), gl_->GetError()); | 957 EXPECT_EQ(static_cast<GLenum>(GL_INVALID_ENUM), gl_->GetError()); |
954 const char* kPtr = "something"; | 958 const char* kPtr = "something"; |
955 gl_->UnmapTexSubImage2DCHROMIUM(kPtr); | 959 gl_->UnmapTexSubImage2DCHROMIUM(kPtr); |
956 EXPECT_EQ(static_cast<GLenum>(GL_INVALID_VALUE), gl_->GetError()); | 960 EXPECT_EQ(static_cast<GLenum>(GL_INVALID_VALUE), gl_->GetError()); |
957 } | 961 } |
958 | 962 |
959 } // namespace gles2 | 963 } // namespace gles2 |
960 } // namespace gpu | 964 } // namespace gpu |
961 | 965 |
962 | 966 |
OLD | NEW |