OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // This file is auto-generated from | 5 // This file is auto-generated from |
6 // gpu/command_buffer/build_gles2_cmd_buffer.py | 6 // gpu/command_buffer/build_gles2_cmd_buffer.py |
7 // DO NOT EDIT! | 7 // DO NOT EDIT! |
8 | 8 |
9 // These functions emluate GLES2 over command buffers. | 9 // These functions emluate GLES2 over command buffers. |
10 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ | 10 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 } | 561 } |
562 void GLES2ResizeCHROMIUM(GLuint width, GLuint height) { | 562 void GLES2ResizeCHROMIUM(GLuint width, GLuint height) { |
563 gles2::GetGLContext()->ResizeCHROMIUM(width, height); | 563 gles2::GetGLContext()->ResizeCHROMIUM(width, height); |
564 } | 564 } |
565 const GLchar* GLES2GetRequestableExtensionsCHROMIUM() { | 565 const GLchar* GLES2GetRequestableExtensionsCHROMIUM() { |
566 return gles2::GetGLContext()->GetRequestableExtensionsCHROMIUM(); | 566 return gles2::GetGLContext()->GetRequestableExtensionsCHROMIUM(); |
567 } | 567 } |
568 void GLES2RequestExtensionCHROMIUM(const char* extension) { | 568 void GLES2RequestExtensionCHROMIUM(const char* extension) { |
569 gles2::GetGLContext()->RequestExtensionCHROMIUM(extension); | 569 gles2::GetGLContext()->RequestExtensionCHROMIUM(extension); |
570 } | 570 } |
571 void GLES2SetLatchCHROMIUM(GLuint latch_id) { | |
572 gles2::GetGLContext()->SetLatchCHROMIUM(latch_id); | |
573 } | |
574 void GLES2WaitLatchCHROMIUM(GLuint latch_id) { | |
575 gles2::GetGLContext()->WaitLatchCHROMIUM(latch_id); | |
576 } | |
577 void GLES2RateLimitOffscreenContextCHROMIUM() { | 571 void GLES2RateLimitOffscreenContextCHROMIUM() { |
578 gles2::GetGLContext()->RateLimitOffscreenContextCHROMIUM(); | 572 gles2::GetGLContext()->RateLimitOffscreenContextCHROMIUM(); |
579 } | 573 } |
580 void GLES2SetSurfaceCHROMIUM(GLint surface_id) { | 574 void GLES2SetSurfaceCHROMIUM(GLint surface_id) { |
581 gles2::GetGLContext()->SetSurfaceCHROMIUM(surface_id); | 575 gles2::GetGLContext()->SetSurfaceCHROMIUM(surface_id); |
582 } | 576 } |
583 void GLES2GetMultipleIntegervCHROMIUM( | 577 void GLES2GetMultipleIntegervCHROMIUM( |
584 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size) { | 578 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size) { |
585 gles2::GetGLContext()->GetMultipleIntegervCHROMIUM( | 579 gles2::GetGLContext()->GetMultipleIntegervCHROMIUM( |
586 pnames, count, results, size); | 580 pnames, count, results, size); |
587 } | 581 } |
588 void GLES2GetProgramInfoCHROMIUM( | 582 void GLES2GetProgramInfoCHROMIUM( |
589 GLuint program, GLsizei bufsize, GLsizei* size, void* info) { | 583 GLuint program, GLsizei bufsize, GLsizei* size, void* info) { |
590 gles2::GetGLContext()->GetProgramInfoCHROMIUM(program, bufsize, size, info); | 584 gles2::GetGLContext()->GetProgramInfoCHROMIUM(program, bufsize, size, info); |
591 } | 585 } |
592 | 586 |
593 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ | 587 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ |
594 | 588 |
OLD | NEW |