| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/WebGLSampler.h" | 5 #include "modules/webgl/WebGLSampler.h" |
| 6 | 6 |
| 7 #include "modules/webgl/WebGL2RenderingContextBase.h" | 7 #include "modules/webgl/WebGL2RenderingContextBase.h" |
| 8 | 8 |
| 9 namespace blink { | 9 namespace blink { |
| 10 | 10 |
| 11 WebGLSampler* WebGLSampler::create(WebGL2RenderingContextBase* ctx) | 11 WebGLSampler* WebGLSampler::create(WebGL2RenderingContextBase* ctx) |
| 12 { | 12 { |
| 13 return new WebGLSampler(ctx); | 13 return new WebGLSampler(ctx); |
| 14 } | 14 } |
| 15 | 15 |
| 16 WebGLSampler::~WebGLSampler() | 16 WebGLSampler::~WebGLSampler() |
| 17 { | 17 { |
| 18 // See the comment in WebGLObject::detachAndDeleteObject(). | 18 // See the comment in WebGLObject::detachAndDeleteObject(). |
| 19 detachAndDeleteObject(); | 19 detachAndDeleteObject(); |
| 20 } | 20 } |
| 21 | 21 |
| 22 WebGLSampler::WebGLSampler(WebGL2RenderingContextBase* ctx) | 22 WebGLSampler::WebGLSampler(WebGL2RenderingContextBase* ctx) |
| 23 : WebGLSharedPlatform3DObject(ctx) | 23 : WebGLSharedPlatform3DObject(ctx) |
| 24 { | 24 { |
| 25 setObject(ctx->webContext()->createSampler()); | 25 setObject(ctx->webContext()->createSampler()); |
| 26 } | 26 } |
| 27 | 27 |
| 28 void WebGLSampler::deleteObjectImpl(WebGraphicsContext3D* context3d) | 28 void WebGLSampler::deleteObjectImpl(WebGraphicsContext3D* context3d, gpu::gles2:
:GLES2Interface* gl) |
| 29 { | 29 { |
| 30 context3d->deleteSampler(m_object); | 30 context3d->deleteSampler(m_object); |
| 31 m_object = 0; | 31 m_object = 0; |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace blink | 34 } // namespace blink |
| OLD | NEW |