| Index: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers.cc
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers.cc b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers.cc
|
| index 2c0a0b77f9f86d1d14d39b077429fa31eb068411..c18ea3dde93795c0b33d339eb67a7e980a632b8c 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers.cc
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers.cc
|
| @@ -2728,5 +2728,25 @@ error::Error GLES2DecoderPassthroughImpl::HandleCompressedTexSubImage3D(
|
| data_size, data);
|
| }
|
|
|
| +error::Error
|
| +GLES2DecoderPassthroughImpl::HandleInitializeDiscardableTextureCHROMIUM(
|
| + uint32_t immediate_data_size,
|
| + const volatile void* cmd_data) {
|
| + return error::kNoError;
|
| +}
|
| +
|
| +error::Error
|
| +GLES2DecoderPassthroughImpl::HandleUnlockDiscardableTextureCHROMIUM(
|
| + uint32_t immediate_data_size,
|
| + const volatile void* cmd_data) {
|
| + return error::kNoError;
|
| +}
|
| +
|
| +error::Error GLES2DecoderPassthroughImpl::HandleLockDiscardableTextureCHROMIUM(
|
| + uint32_t immediate_data_size,
|
| + const volatile void* cmd_data) {
|
| + return error::kNoError;
|
| +}
|
| +
|
| } // namespace gles2
|
| } // namespace gpu
|
|
|