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

Unified Diff: command_buffer/service/cross/gl/render_surface_gl.cc

Issue 234002: More work in Command Buffers... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « command_buffer/service/cross/gl/geometry_gl.cc ('k') | command_buffer/service/cross/gl/sampler_gl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_buffer/service/cross/gl/render_surface_gl.cc
===================================================================
--- command_buffer/service/cross/gl/render_surface_gl.cc (revision 26892)
+++ command_buffer/service/cross/gl/render_surface_gl.cc (working copy)
@@ -110,12 +110,12 @@
// Copies the data from a texture resource.
BufferSyncInterface::ParseError GAPIGL::CreateRenderSurface(
- ResourceID id,
+ ResourceId id,
unsigned int width,
unsigned int height,
unsigned int mip_level,
unsigned int side,
- ResourceID texture_id) {
+ ResourceId texture_id) {
if (id == current_surface_id_) {
// This will delete the current surface which would be bad.
return BufferSyncInterface::kParseInvalidArguments;
@@ -137,7 +137,7 @@
return BufferSyncInterface::kParseNoError;
}
-BufferSyncInterface::ParseError GAPIGL::DestroyRenderSurface(ResourceID id) {
+BufferSyncInterface::ParseError GAPIGL::DestroyRenderSurface(ResourceId id) {
if (id == current_surface_id_) {
return BufferSyncInterface::kParseInvalidArguments;
}
@@ -147,7 +147,7 @@
}
BufferSyncInterface::ParseError GAPIGL::CreateDepthSurface(
- ResourceID id,
+ ResourceId id,
unsigned int width,
unsigned int height) {
if (id == current_depth_surface_id_) {
@@ -163,7 +163,7 @@
return BufferSyncInterface::kParseNoError;
}
-BufferSyncInterface::ParseError GAPIGL::DestroyDepthSurface(ResourceID id) {
+BufferSyncInterface::ParseError GAPIGL::DestroyDepthSurface(ResourceId id) {
if (id == current_depth_surface_id_) {
return BufferSyncInterface::kParseInvalidArguments;
}
@@ -220,8 +220,8 @@
}
BufferSyncInterface::ParseError GAPIGL::SetRenderSurface(
- ResourceID render_surface_id,
- ResourceID depth_stencil_id) {
+ ResourceId render_surface_id,
+ ResourceId depth_stencil_id) {
if (render_surfaces_.Get(render_surface_id) == NULL &&
depth_surfaces_.Get(depth_stencil_id) == NULL) {
return BufferSyncInterface::kParseInvalidArguments;
« no previous file with comments | « command_buffer/service/cross/gl/geometry_gl.cc ('k') | command_buffer/service/cross/gl/sampler_gl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698