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 void TestGLES2Interface::WaitSyncPointCHROMIUM(GLuint sync_point) { | |
327 test_context_->waitSyncPoint(sync_point); | |
328 } | |
329 | |
330 GLuint TestGLES2Interface::InsertSyncPointCHROMIUM() { | 326 GLuint TestGLES2Interface::InsertSyncPointCHROMIUM() { |
331 return test_context_->insertSyncPoint(); | 327 return test_context_->insertSyncPoint(); |
332 } | 328 } |
333 | 329 |
| 330 void TestGLES2Interface::WaitSyncTokenCHROMIUM(const GLbyte* sync_token) { |
| 331 test_context_->waitSyncToken(sync_token); |
| 332 } |
| 333 |
334 void TestGLES2Interface::BeginQueryEXT(GLenum target, GLuint id) { | 334 void TestGLES2Interface::BeginQueryEXT(GLenum target, GLuint id) { |
335 test_context_->beginQueryEXT(target, id); | 335 test_context_->beginQueryEXT(target, id); |
336 } | 336 } |
337 | 337 |
338 void TestGLES2Interface::EndQueryEXT(GLenum target) { | 338 void TestGLES2Interface::EndQueryEXT(GLenum target) { |
339 test_context_->endQueryEXT(target); | 339 test_context_->endQueryEXT(target); |
340 } | 340 } |
341 | 341 |
342 void TestGLES2Interface::GetQueryObjectuivEXT(GLuint id, | 342 void TestGLES2Interface::GetQueryObjectuivEXT(GLuint id, |
343 GLenum pname, | 343 GLenum pname, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 test_context_->loseContextCHROMIUM(current, other); | 387 test_context_->loseContextCHROMIUM(current, other); |
388 } | 388 } |
389 | 389 |
390 GLenum TestGLES2Interface::GetGraphicsResetStatusKHR() { | 390 GLenum TestGLES2Interface::GetGraphicsResetStatusKHR() { |
391 if (test_context_->isContextLost()) | 391 if (test_context_->isContextLost()) |
392 return GL_UNKNOWN_CONTEXT_RESET_KHR; | 392 return GL_UNKNOWN_CONTEXT_RESET_KHR; |
393 return GL_NO_ERROR; | 393 return GL_NO_ERROR; |
394 } | 394 } |
395 | 395 |
396 } // namespace cc | 396 } // namespace cc |
OLD | NEW |