summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/client/gles2_implementation.cc
diff options
context:
space:
mode:
authorsiva.gunturi <siva.gunturi@samsung.com>2015-11-15 08:15:31 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-15 16:16:18 +0000
commit5d4feb054523b92862e6e4aca237ca44401fc404 (patch)
tree0e5c1e27dd23bc6bcaf26d2a0d19fe22fddb0fc0 /gpu/command_buffer/client/gles2_implementation.cc
parentc971ed1615a7a3062828cc56fe4f6668be627f26 (diff)
downloadchromium_src-5d4feb054523b92862e6e4aca237ca44401fc404.zip
chromium_src-5d4feb054523b92862e6e4aca237ca44401fc404.tar.gz
chromium_src-5d4feb054523b92862e6e4aca237ca44401fc404.tar.bz2
Remove CreateStreamTexture from GL interfaces.
Remove CreateStreamTexture from gpu_control.h. Use CreateStreamTexture as a non virtual function in command_buffer_proxy and in_process_command_buffer (for STFSynchronous).Use CreateStreamTexture instead of gl->CreateStreamTextureCHROMIUM. BUG=516585, 339191 Review URL: https://codereview.chromium.org/1385883002 Cr-Commit-Position: refs/heads/master@{#359778}
Diffstat (limited to 'gpu/command_buffer/client/gles2_implementation.cc')
-rw-r--r--gpu/command_buffer/client/gles2_implementation.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
index 0b44e30..b7b8a7f 100644
--- a/gpu/command_buffer/client/gles2_implementation.cc
+++ b/gpu/command_buffer/client/gles2_implementation.cc
@@ -4864,15 +4864,6 @@ void GLES2Implementation::GetTransformFeedbackVaryingsCHROMIUM(
memcpy(info, &result[0], result.size());
}
-GLuint GLES2Implementation::CreateStreamTextureCHROMIUM(GLuint texture) {
- GPU_CLIENT_SINGLE_THREAD_CHECK();
- GPU_CLIENT_LOG("[" << GetLogPrefix() << "] CreateStreamTextureCHROMIUM("
- << texture << ")");
- TRACE_EVENT0("gpu", "GLES2::CreateStreamTextureCHROMIUM");
- helper_->CommandBufferHelper::Flush();
- return gpu_control_->CreateStreamTexture(texture);
-}
-
void GLES2Implementation::PostSubBufferCHROMIUM(
GLint x, GLint y, GLint width, GLint height) {
GPU_CLIENT_SINGLE_THREAD_CHECK();