| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "cc/test/test_gles2_interface.h" | 5 #include "cc/test/test_gles2_interface.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "cc/test/test_web_graphics_context_3d.h" | 8 #include "cc/test/test_web_graphics_context_3d.h" |
| 9 #include "gpu/GLES2/gl2extchromium.h" | 9 #include "gpu/GLES2/gl2extchromium.h" |
| 10 | 10 |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 return test_context_->unmapBufferCHROMIUM(target); | 316 return test_context_->unmapBufferCHROMIUM(target); |
| 317 } | 317 } |
| 318 | 318 |
| 319 void TestGLES2Interface::BufferData(GLenum target, | 319 void TestGLES2Interface::BufferData(GLenum target, |
| 320 GLsizeiptr size, | 320 GLsizeiptr size, |
| 321 const void* data, | 321 const void* data, |
| 322 GLenum usage) { | 322 GLenum usage) { |
| 323 test_context_->bufferData(target, size, data, usage); | 323 test_context_->bufferData(target, size, data, usage); |
| 324 } | 324 } |
| 325 | 325 |
| 326 GLuint TestGLES2Interface::InsertSyncPointCHROMIUM() { | |
| 327 return test_context_->insertSyncPoint(); | |
| 328 } | |
| 329 | |
| 330 GLuint64 TestGLES2Interface::InsertFenceSyncCHROMIUM() { | 326 GLuint64 TestGLES2Interface::InsertFenceSyncCHROMIUM() { |
| 331 return test_context_->insertFenceSync(); | 327 return test_context_->insertFenceSync(); |
| 332 } | 328 } |
| 333 | 329 |
| 334 void TestGLES2Interface::GenSyncTokenCHROMIUM(GLuint64 fence_sync, | 330 void TestGLES2Interface::GenSyncTokenCHROMIUM(GLuint64 fence_sync, |
| 335 GLbyte* sync_token) { | 331 GLbyte* sync_token) { |
| 336 test_context_->genSyncToken(fence_sync, sync_token); | 332 test_context_->genSyncToken(fence_sync, sync_token); |
| 337 } | 333 } |
| 338 | 334 |
| 339 void TestGLES2Interface::GenUnverifiedSyncTokenCHROMIUM(GLuint64 fence_sync, | 335 void TestGLES2Interface::GenUnverifiedSyncTokenCHROMIUM(GLuint64 fence_sync, |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 test_context_->loseContextCHROMIUM(current, other); | 403 test_context_->loseContextCHROMIUM(current, other); |
| 408 } | 404 } |
| 409 | 405 |
| 410 GLenum TestGLES2Interface::GetGraphicsResetStatusKHR() { | 406 GLenum TestGLES2Interface::GetGraphicsResetStatusKHR() { |
| 411 if (test_context_->isContextLost()) | 407 if (test_context_->isContextLost()) |
| 412 return GL_UNKNOWN_CONTEXT_RESET_KHR; | 408 return GL_UNKNOWN_CONTEXT_RESET_KHR; |
| 413 return GL_NO_ERROR; | 409 return GL_NO_ERROR; |
| 414 } | 410 } |
| 415 | 411 |
| 416 } // namespace cc | 412 } // namespace cc |
| OLD | NEW |