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

Unified Diff: ppapi/shared_impl/ppb_graphics_3d_shared.cc

Issue 8790004: Rename the shared impl files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/shared_impl/ppb_graphics_3d_shared.h ('k') | ppapi/shared_impl/ppb_image_data_shared.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_graphics_3d_shared.cc
diff --git a/ppapi/shared_impl/graphics_3d_impl.cc b/ppapi/shared_impl/ppb_graphics_3d_shared.cc
similarity index 67%
rename from ppapi/shared_impl/graphics_3d_impl.cc
rename to ppapi/shared_impl/ppb_graphics_3d_shared.cc
index 00555de04aef28214cb3191c232d4b0fe5041cb8..9e0c15515e7774386f613c9d27107255a4a6b7d3 100644
--- a/ppapi/shared_impl/graphics_3d_impl.cc
+++ b/ppapi/shared_impl/ppb_graphics_3d_shared.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ppapi/shared_impl/graphics_3d_impl.h"
+#include "ppapi/shared_impl/ppb_graphics_3d_shared.h"
#include "base/logging.h"
#include "gpu/command_buffer/client/gles2_cmd_helper.h"
@@ -11,34 +11,34 @@
namespace ppapi {
-Graphics3DImpl::Graphics3DImpl()
+PPB_Graphics3D_Shared::PPB_Graphics3D_Shared()
: transfer_buffer_id_(-1),
swap_callback_(PP_BlockUntilComplete()) {
}
-Graphics3DImpl::~Graphics3DImpl() {
+PPB_Graphics3D_Shared::~PPB_Graphics3D_Shared() {
// Make sure that GLES2 implementation has already been destroyed.
DCHECK_EQ(transfer_buffer_id_, -1);
DCHECK(!gles2_helper_.get());
DCHECK(!gles2_impl_.get());
}
-int32_t Graphics3DImpl::GetAttribs(int32_t* attrib_list) {
+int32_t PPB_Graphics3D_Shared::GetAttribs(int32_t* attrib_list) {
// TODO(alokp): Implement me.
return PP_ERROR_FAILED;
}
-int32_t Graphics3DImpl::SetAttribs(int32_t* attrib_list) {
+int32_t PPB_Graphics3D_Shared::SetAttribs(int32_t* attrib_list) {
// TODO(alokp): Implement me.
return PP_ERROR_FAILED;
}
-int32_t Graphics3DImpl::GetError() {
+int32_t PPB_Graphics3D_Shared::GetError() {
// TODO(alokp): Implement me.
return PP_ERROR_FAILED;
}
-int32_t Graphics3DImpl::ResizeBuffers(int32_t width, int32_t height) {
+int32_t PPB_Graphics3D_Shared::ResizeBuffers(int32_t width, int32_t height) {
if ((width < 0) || (height < 0))
return PP_ERROR_BADARGUMENT;
@@ -47,7 +47,7 @@ int32_t Graphics3DImpl::ResizeBuffers(int32_t width, int32_t height) {
return PP_OK;
}
-int32_t Graphics3DImpl::SwapBuffers(PP_CompletionCallback callback) {
+int32_t PPB_Graphics3D_Shared::SwapBuffers(PP_CompletionCallback callback) {
if (!callback.func) {
// Blocking SwapBuffers isn't supported (since we have to be on the main
// thread).
@@ -63,30 +63,30 @@ int32_t Graphics3DImpl::SwapBuffers(PP_CompletionCallback callback) {
return DoSwapBuffers();
}
-void* Graphics3DImpl::MapTexSubImage2DCHROMIUM(GLenum target,
- GLint level,
- GLint xoffset,
- GLint yoffset,
- GLsizei width,
- GLsizei height,
- GLenum format,
- GLenum type,
- GLenum access) {
+void* PPB_Graphics3D_Shared::MapTexSubImage2DCHROMIUM(GLenum target,
+ GLint level,
+ GLint xoffset,
+ GLint yoffset,
+ GLsizei width,
+ GLsizei height,
+ GLenum format,
+ GLenum type,
+ GLenum access) {
return gles2_impl_->MapTexSubImage2DCHROMIUM(
target, level, xoffset, yoffset, width, height, format, type, access);
}
-void Graphics3DImpl::UnmapTexSubImage2DCHROMIUM(const void* mem) {
+void PPB_Graphics3D_Shared::UnmapTexSubImage2DCHROMIUM(const void* mem) {
gles2_impl_->UnmapTexSubImage2DCHROMIUM(mem);
}
-void Graphics3DImpl::SwapBuffersACK(int32_t pp_error) {
+void PPB_Graphics3D_Shared::SwapBuffersACK(int32_t pp_error) {
DCHECK(HasPendingSwap());
PP_RunAndClearCompletionCallback(&swap_callback_, pp_error);
}
-bool Graphics3DImpl::CreateGLES2Impl(int32 command_buffer_size,
- int32 transfer_buffer_size) {
+bool PPB_Graphics3D_Shared::CreateGLES2Impl(int32 command_buffer_size,
+ int32 transfer_buffer_size) {
gpu::CommandBuffer* command_buffer = GetCommandBuffer();
DCHECK(command_buffer);
@@ -120,7 +120,7 @@ bool Graphics3DImpl::CreateGLES2Impl(int32 command_buffer_size,
return true;
}
-void Graphics3DImpl::DestroyGLES2Impl() {
+void PPB_Graphics3D_Shared::DestroyGLES2Impl() {
gles2_impl_.reset();
if (transfer_buffer_id_ != -1) {
« no previous file with comments | « ppapi/shared_impl/ppb_graphics_3d_shared.h ('k') | ppapi/shared_impl/ppb_image_data_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698