| 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 #ifndef GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_BASE_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_BASE_H_ |
| 6 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_BASE_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_BASE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 GLint level, | 320 GLint level, |
| 321 GLenum requested_internal_format, | 321 GLenum requested_internal_format, |
| 322 GLsizei width, | 322 GLsizei width, |
| 323 GLsizei height, | 323 GLsizei height, |
| 324 GLint border, | 324 GLint border, |
| 325 GLenum format, | 325 GLenum format, |
| 326 GLenum type, | 326 GLenum type, |
| 327 uint32_t shared_memory_id, | 327 uint32_t shared_memory_id, |
| 328 uint32_t shared_memory_offset, | 328 uint32_t shared_memory_offset, |
| 329 GLenum expected_internal_format); | 329 GLenum expected_internal_format); |
| 330 void DoTexImage3D(GLenum target, |
| 331 GLint level, |
| 332 GLenum internal_format, |
| 333 GLsizei width, |
| 334 GLsizei height, |
| 335 GLsizei depth, |
| 336 GLint border, |
| 337 GLenum format, |
| 338 GLenum type, |
| 339 uint32_t shared_memory_id, |
| 340 uint32_t shared_memory_offset); |
| 330 void DoRenderbufferStorage( | 341 void DoRenderbufferStorage( |
| 331 GLenum target, GLenum internal_format, GLenum actual_format, | 342 GLenum target, GLenum internal_format, GLenum actual_format, |
| 332 GLsizei width, GLsizei height, GLenum error); | 343 GLsizei width, GLsizei height, GLenum error); |
| 333 void DoFramebufferRenderbuffer( | 344 void DoFramebufferRenderbuffer( |
| 334 GLenum target, | 345 GLenum target, |
| 335 GLenum attachment, | 346 GLenum attachment, |
| 336 GLenum renderbuffer_target, | 347 GLenum renderbuffer_target, |
| 337 GLuint renderbuffer_client_id, | 348 GLuint renderbuffer_client_id, |
| 338 GLuint renderbuffer_service_id, | 349 GLuint renderbuffer_service_id, |
| 339 GLenum error); | 350 GLenum error); |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 }; | 770 }; |
| 760 | 771 |
| 761 // SpecializedSetup specializations that are needed in multiple unittest files. | 772 // SpecializedSetup specializations that are needed in multiple unittest files. |
| 762 template <> | 773 template <> |
| 763 void GLES2DecoderTestBase::SpecializedSetup<cmds::LinkProgram, 0>(bool valid); | 774 void GLES2DecoderTestBase::SpecializedSetup<cmds::LinkProgram, 0>(bool valid); |
| 764 | 775 |
| 765 } // namespace gles2 | 776 } // namespace gles2 |
| 766 } // namespace gpu | 777 } // namespace gpu |
| 767 | 778 |
| 768 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_BASE_H_ | 779 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_BASE_H_ |
| OLD | NEW |