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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/CHROMIUMValuebuffer.cpp

Issue 1833273002: Remove WebGraphicsContext3D::getGLES2Interface(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: getgles2: rebase Created 4 years, 8 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) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "modules/webgl/CHROMIUMValuebuffer.h" 5 #include "modules/webgl/CHROMIUMValuebuffer.h"
6 6
7 #include "gpu/command_buffer/client/gles2_interface.h" 7 #include "gpu/command_buffer/client/gles2_interface.h"
8 #include "modules/webgl/WebGLRenderingContextBase.h" 8 #include "modules/webgl/WebGLRenderingContextBase.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 11 matching lines...) Expand all
22 22
23 CHROMIUMValuebuffer::CHROMIUMValuebuffer(WebGLRenderingContextBase* ctx) 23 CHROMIUMValuebuffer::CHROMIUMValuebuffer(WebGLRenderingContextBase* ctx)
24 : WebGLSharedPlatform3DObject(ctx) 24 : WebGLSharedPlatform3DObject(ctx)
25 , m_hasEverBeenBound(false) 25 , m_hasEverBeenBound(false)
26 { 26 {
27 GLuint buffer; 27 GLuint buffer;
28 ctx->contextGL()->GenValuebuffersCHROMIUM(1, &buffer); 28 ctx->contextGL()->GenValuebuffersCHROMIUM(1, &buffer);
29 setObject(buffer); 29 setObject(buffer);
30 } 30 }
31 31
32 void CHROMIUMValuebuffer::deleteObjectImpl(WebGraphicsContext3D* context3d, gpu: :gles2::GLES2Interface* gl) 32 void CHROMIUMValuebuffer::deleteObjectImpl(gpu::gles2::GLES2Interface* gl)
33 { 33 {
34 gl->DeleteValuebuffersCHROMIUM(1, &m_object); 34 gl->DeleteValuebuffersCHROMIUM(1, &m_object);
35 m_object = 0; 35 m_object = 0;
36 } 36 }
37 37
38 } // namespace blink 38 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698