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

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

Issue 2221173002: Implementing FlushMappedBufferRange in GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: attempt to fix win build Created 4 years, 2 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 void* MapBufferSubDataCHROMIUM(GLuint target, 607 void* MapBufferSubDataCHROMIUM(GLuint target,
608 GLintptr offset, 608 GLintptr offset,
609 GLsizeiptr size, 609 GLsizeiptr size,
610 GLenum access) override; 610 GLenum access) override;
611 void UnmapBufferSubDataCHROMIUM(const void* mem) override; 611 void UnmapBufferSubDataCHROMIUM(const void* mem) override;
612 void* MapBufferRange(GLenum target, 612 void* MapBufferRange(GLenum target,
613 GLintptr offset, 613 GLintptr offset,
614 GLsizeiptr size, 614 GLsizeiptr size,
615 GLbitfield access) override; 615 GLbitfield access) override;
616 GLboolean UnmapBuffer(GLenum target) override; 616 GLboolean UnmapBuffer(GLenum target) override;
617 void FlushMappedBufferRange(GLenum target,
618 GLintptr offset,
619 GLsizeiptr size) override;
617 void* MapTexSubImage2DCHROMIUM(GLenum target, 620 void* MapTexSubImage2DCHROMIUM(GLenum target,
618 GLint level, 621 GLint level,
619 GLint xoffset, 622 GLint xoffset,
620 GLint yoffset, 623 GLint yoffset,
621 GLsizei width, 624 GLsizei width,
622 GLsizei height, 625 GLsizei height,
623 GLenum format, 626 GLenum format,
624 GLenum type, 627 GLenum type,
625 GLenum access) override; 628 GLenum access) override;
626 void UnmapTexSubImage2DCHROMIUM(const void* mem) override; 629 void UnmapTexSubImage2DCHROMIUM(const void* mem) override;
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 GLint GetFragDataIndexEXT(GLuint program, const char* name) override; 855 GLint GetFragDataIndexEXT(GLuint program, const char* name) override;
853 void UniformMatrix4fvStreamTextureMatrixCHROMIUM( 856 void UniformMatrix4fvStreamTextureMatrixCHROMIUM(
854 GLint location, 857 GLint location,
855 GLboolean transpose, 858 GLboolean transpose,
856 const GLfloat* transform) override; 859 const GLfloat* transform) override;
857 void SwapBuffersWithDamageCHROMIUM(GLint x, 860 void SwapBuffersWithDamageCHROMIUM(GLint x,
858 GLint y, 861 GLint y,
859 GLint width, 862 GLint width,
860 GLint height) override; 863 GLint height) override;
861 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_AUTOGEN_H_ 864 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698