Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Side by Side Diff: gpu/command_buffer/client/gles2_implementation_autogen.h

Issue 14456004: GPU client side changes for GpuMemoryBuffers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glapi
Patch Set: Updated the extension documentation Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // 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 // This file is included by gles2_implementation.h to declare the 9 // This file is included by gles2_implementation.h to declare the
10 // GL api functions. 10 // GL api functions.
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 431
432 virtual void RegisterSharedIdsCHROMIUM( 432 virtual void RegisterSharedIdsCHROMIUM(
433 GLuint namespace_id, GLsizei n, const GLuint* ids) OVERRIDE; 433 GLuint namespace_id, GLsizei n, const GLuint* ids) OVERRIDE;
434 434
435 virtual GLboolean EnableFeatureCHROMIUM(const char* feature) OVERRIDE; 435 virtual GLboolean EnableFeatureCHROMIUM(const char* feature) OVERRIDE;
436 436
437 virtual void* MapBufferCHROMIUM(GLuint target, GLenum access) OVERRIDE; 437 virtual void* MapBufferCHROMIUM(GLuint target, GLenum access) OVERRIDE;
438 438
439 virtual GLboolean UnmapBufferCHROMIUM(GLuint target) OVERRIDE; 439 virtual GLboolean UnmapBufferCHROMIUM(GLuint target) OVERRIDE;
440 440
441 virtual void* MapImageCHROMIUM(GLuint image_id, GLenum access) OVERRIDE;
442
443 virtual GLboolean UnmapImageCHROMIUM(GLuint image_id) OVERRIDE;
444
441 virtual void* MapBufferSubDataCHROMIUM( 445 virtual void* MapBufferSubDataCHROMIUM(
442 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access) OVERRIDE; 446 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access) OVERRIDE;
443 447
444 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) OVERRIDE; 448 virtual void UnmapBufferSubDataCHROMIUM(const void* mem) OVERRIDE;
445 449
446 virtual void* MapTexSubImage2DCHROMIUM( 450 virtual void* MapTexSubImage2DCHROMIUM(
447 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, 451 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
448 GLsizei height, GLenum format, GLenum type, GLenum access) OVERRIDE; 452 GLsizei height, GLenum format, GLenum type, GLenum access) OVERRIDE;
449 453
450 virtual void UnmapTexSubImage2DCHROMIUM(const void* mem) OVERRIDE; 454 virtual void UnmapTexSubImage2DCHROMIUM(const void* mem) OVERRIDE;
(...skipping 10 matching lines...) Expand all
461 const GLenum* pnames, GLuint count, GLint* results, 465 const GLenum* pnames, GLuint count, GLint* results,
462 GLsizeiptr size) OVERRIDE; 466 GLsizeiptr size) OVERRIDE;
463 467
464 virtual void GetProgramInfoCHROMIUM( 468 virtual void GetProgramInfoCHROMIUM(
465 GLuint program, GLsizei bufsize, GLsizei* size, void* info) OVERRIDE; 469 GLuint program, GLsizei bufsize, GLsizei* size, void* info) OVERRIDE;
466 470
467 virtual GLuint CreateStreamTextureCHROMIUM(GLuint texture) OVERRIDE; 471 virtual GLuint CreateStreamTextureCHROMIUM(GLuint texture) OVERRIDE;
468 472
469 virtual void DestroyStreamTextureCHROMIUM(GLuint texture) OVERRIDE; 473 virtual void DestroyStreamTextureCHROMIUM(GLuint texture) OVERRIDE;
470 474
475 virtual GLuint CreateImageCHROMIUM(GLsizei width, GLsizei height) OVERRIDE;
476
477 virtual void DestroyImageCHROMIUM(GLuint image_id) OVERRIDE;
478
479 virtual void GetImageParameterivCHROMIUM(
480 GLuint image_id, GLenum pname, GLint* params) OVERRIDE;
481
471 virtual void GetTranslatedShaderSourceANGLE( 482 virtual void GetTranslatedShaderSourceANGLE(
472 GLuint shader, GLsizei bufsize, GLsizei* length, char* source) OVERRIDE; 483 GLuint shader, GLsizei bufsize, GLsizei* length, char* source) OVERRIDE;
473 484
474 virtual void PostSubBufferCHROMIUM( 485 virtual void PostSubBufferCHROMIUM(
475 GLint x, GLint y, GLint width, GLint height) OVERRIDE; 486 GLint x, GLint y, GLint width, GLint height) OVERRIDE;
476 487
477 virtual void TexImageIOSurface2DCHROMIUM( 488 virtual void TexImageIOSurface2DCHROMIUM(
478 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId, 489 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId,
479 GLuint plane) OVERRIDE; 490 GLuint plane) OVERRIDE;
480 491
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) OVERRIDE; 538 virtual void LoseContextCHROMIUM(GLenum current, GLenum other) OVERRIDE;
528 539
529 virtual GLuint InsertSyncPointCHROMIUM() OVERRIDE; 540 virtual GLuint InsertSyncPointCHROMIUM() OVERRIDE;
530 541
531 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) OVERRIDE; 542 virtual void WaitSyncPointCHROMIUM(GLuint sync_point) OVERRIDE;
532 543
533 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) OVERRIDE; 544 virtual void DrawBuffersEXT(GLsizei count, const GLenum* bufs) OVERRIDE;
534 545
535 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ 546 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_
536 547
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698