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

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc

Issue 2257533007: Autogenerate CreateAndConsumeTextureCHROMIUM handler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 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 "gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h" 5 #include "gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h"
6 6
7 #include "base/strings/string_number_conversions.h" 7 #include "base/strings/string_number_conversions.h"
8 8
9 namespace gpu { 9 namespace gpu {
10 namespace gles2 { 10 namespace gles2 {
(...skipping 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1763 const GLbyte* mailbox) { 1763 const GLbyte* mailbox) {
1764 return error::kNoError; 1764 return error::kNoError;
1765 } 1765 }
1766 1766
1767 error::Error GLES2DecoderPassthroughImpl::DoConsumeTextureCHROMIUM( 1767 error::Error GLES2DecoderPassthroughImpl::DoConsumeTextureCHROMIUM(
1768 GLenum target, 1768 GLenum target,
1769 const GLbyte* mailbox) { 1769 const GLbyte* mailbox) {
1770 return error::kNoError; 1770 return error::kNoError;
1771 } 1771 }
1772 1772
1773 error::Error GLES2DecoderPassthroughImpl::DoCreateAndConsumeTextureCHROMIUM( 1773 error::Error GLES2DecoderPassthroughImpl::DoCreateAndConsumeTextureINTERNAL(
1774 GLenum target, 1774 GLenum target,
1775 const GLbyte* mailbox, 1775 GLuint texture,
1776 GLuint texture) { 1776 const GLbyte* mailbox) {
1777 return error::kNoError; 1777 return error::kNoError;
1778 } 1778 }
1779 1779
1780 error::Error GLES2DecoderPassthroughImpl::DoBindUniformLocationCHROMIUM( 1780 error::Error GLES2DecoderPassthroughImpl::DoBindUniformLocationCHROMIUM(
1781 GLuint program, 1781 GLuint program,
1782 GLint location, 1782 GLint location,
1783 const char* name) { 1783 const char* name) {
1784 return error::kNoError; 1784 return error::kNoError;
1785 } 1785 }
1786 1786
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
2136 error::Error 2136 error::Error
2137 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( 2137 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM(
2138 GLint location, 2138 GLint location,
2139 GLboolean transpose, 2139 GLboolean transpose,
2140 const GLfloat* defaultValue) { 2140 const GLfloat* defaultValue) {
2141 return error::kNoError; 2141 return error::kNoError;
2142 } 2142 }
2143 2143
2144 } // namespace gles2 2144 } // namespace gles2
2145 } // namespace gpu 2145 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698