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

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

Issue 2221173002: Implementing FlushMappedBufferRange in GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: working 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 } 400 }
401 401
402 error::Error GLES2DecoderPassthroughImpl::DoFinish() { 402 error::Error GLES2DecoderPassthroughImpl::DoFinish() {
403 return error::kNoError; 403 return error::kNoError;
404 } 404 }
405 405
406 error::Error GLES2DecoderPassthroughImpl::DoFlush() { 406 error::Error GLES2DecoderPassthroughImpl::DoFlush() {
407 return error::kNoError; 407 return error::kNoError;
408 } 408 }
409 409
410 error::Error GLES2DecoderPassthroughImpl::DoFlushMappedBufferRange(
411 GLenum target,
412 GLintptr offset,
413 GLsizeiptr size) {
414 return error::kNoError;
415 }
416
410 error::Error GLES2DecoderPassthroughImpl::DoFramebufferRenderbuffer( 417 error::Error GLES2DecoderPassthroughImpl::DoFramebufferRenderbuffer(
411 GLenum target, 418 GLenum target,
412 GLenum attachment, 419 GLenum attachment,
413 GLenum renderbuffertarget, 420 GLenum renderbuffertarget,
414 GLuint renderbuffer) { 421 GLuint renderbuffer) {
415 return error::kNoError; 422 return error::kNoError;
416 } 423 }
417 424
418 error::Error GLES2DecoderPassthroughImpl::DoFramebufferTexture2D( 425 error::Error GLES2DecoderPassthroughImpl::DoFramebufferTexture2D(
419 GLenum target, 426 GLenum target,
(...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after
2136 error::Error 2143 error::Error
2137 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( 2144 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM(
2138 GLint location, 2145 GLint location,
2139 GLboolean transpose, 2146 GLboolean transpose,
2140 const GLfloat* defaultValue) { 2147 const GLfloat* defaultValue) {
2141 return error::kNoError; 2148 return error::kNoError;
2142 } 2149 }
2143 2150
2144 } // namespace gles2 2151 } // namespace gles2
2145 } // namespace gpu 2152 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698