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

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

Issue 299043003: Adding bindless variants mailbox produce/consume (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test fix for windows Created 6 years, 6 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 | Annotate | Revision Log
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 1707 matching lines...) Expand 10 before | Expand all | Expand 10 after
1718 const uint32_t size = 1718 const uint32_t size =
1719 gles2::cmds::ProduceTextureCHROMIUMImmediate::ComputeSize(); 1719 gles2::cmds::ProduceTextureCHROMIUMImmediate::ComputeSize();
1720 gles2::cmds::ProduceTextureCHROMIUMImmediate* c = 1720 gles2::cmds::ProduceTextureCHROMIUMImmediate* c =
1721 GetImmediateCmdSpaceTotalSize< 1721 GetImmediateCmdSpaceTotalSize<
1722 gles2::cmds::ProduceTextureCHROMIUMImmediate>(size); 1722 gles2::cmds::ProduceTextureCHROMIUMImmediate>(size);
1723 if (c) { 1723 if (c) {
1724 c->Init(target, mailbox); 1724 c->Init(target, mailbox);
1725 } 1725 }
1726 } 1726 }
1727 1727
1728 void ProduceTextureDirectCHROMIUMImmediate(GLuint texture,
1729 GLenum target,
1730 const GLbyte* mailbox) {
1731 const uint32_t size =
1732 gles2::cmds::ProduceTextureDirectCHROMIUMImmediate::ComputeSize();
1733 gles2::cmds::ProduceTextureDirectCHROMIUMImmediate* c =
1734 GetImmediateCmdSpaceTotalSize<
1735 gles2::cmds::ProduceTextureDirectCHROMIUMImmediate>(size);
1736 if (c) {
1737 c->Init(texture, target, mailbox);
1738 }
1739 }
1740
1728 void ConsumeTextureCHROMIUMImmediate(GLenum target, const GLbyte* mailbox) { 1741 void ConsumeTextureCHROMIUMImmediate(GLenum target, const GLbyte* mailbox) {
1729 const uint32_t size = 1742 const uint32_t size =
1730 gles2::cmds::ConsumeTextureCHROMIUMImmediate::ComputeSize(); 1743 gles2::cmds::ConsumeTextureCHROMIUMImmediate::ComputeSize();
1731 gles2::cmds::ConsumeTextureCHROMIUMImmediate* c = 1744 gles2::cmds::ConsumeTextureCHROMIUMImmediate* c =
1732 GetImmediateCmdSpaceTotalSize< 1745 GetImmediateCmdSpaceTotalSize<
1733 gles2::cmds::ConsumeTextureCHROMIUMImmediate>(size); 1746 gles2::cmds::ConsumeTextureCHROMIUMImmediate>(size);
1734 if (c) { 1747 if (c) {
1735 c->Init(target, mailbox); 1748 c->Init(target, mailbox);
1736 } 1749 }
1737 } 1750 }
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1937 bounds_width, 1950 bounds_width,
1938 bounds_height, 1951 bounds_height,
1939 uv_x, 1952 uv_x,
1940 uv_y, 1953 uv_y,
1941 uv_width, 1954 uv_width,
1942 uv_height); 1955 uv_height);
1943 } 1956 }
1944 } 1957 }
1945 1958
1946 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 1959 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_cmd_helper.h ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698