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

Unified Diff: command_buffer/service/win/d3d9/render_surface_d3d9.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/win/d3d9/geometry_d3d9.cc ('k') | command_buffer/service/win/d3d9/sampler_d3d9.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_buffer/service/win/d3d9/render_surface_d3d9.cc
===================================================================
--- command_buffer/service/win/d3d9/render_surface_d3d9.cc (revision 26886)
+++ command_buffer/service/win/d3d9/render_surface_d3d9.cc (working copy)
@@ -128,12 +128,12 @@
// Copies the data from a texture resource.
BufferSyncInterface::ParseError GAPID3D9::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;
@@ -156,7 +156,7 @@
return BufferSyncInterface::kParseNoError;
}
-BufferSyncInterface::ParseError GAPID3D9::DestroyRenderSurface(ResourceID id) {
+BufferSyncInterface::ParseError GAPID3D9::DestroyRenderSurface(ResourceId id) {
if (id == current_surface_id_) {
return BufferSyncInterface::kParseInvalidArguments;
}
@@ -166,7 +166,7 @@
}
BufferSyncInterface::ParseError GAPID3D9::CreateDepthSurface(
- ResourceID id,
+ ResourceId id,
unsigned int width,
unsigned int height) {
if (id == current_depth_surface_id_) {
@@ -182,7 +182,7 @@
return BufferSyncInterface::kParseNoError;
}
-BufferSyncInterface::ParseError GAPID3D9::DestroyDepthSurface(ResourceID id) {
+BufferSyncInterface::ParseError GAPID3D9::DestroyDepthSurface(ResourceId id) {
if (id == current_depth_surface_id_) {
return BufferSyncInterface::kParseInvalidArguments;
}
@@ -192,8 +192,8 @@
}
BufferSyncInterface::ParseError GAPID3D9::SetRenderSurface(
- ResourceID render_surface_id,
- ResourceID depth_stencil_id) {
+ ResourceId render_surface_id,
+ ResourceId depth_stencil_id) {
RenderSurfaceD3D9 *d3d_render_surface =
render_surfaces_.Get(render_surface_id);
RenderDepthStencilSurfaceD3D9 *d3d_render_depth_surface =
« no previous file with comments | « command_buffer/service/win/d3d9/geometry_d3d9.cc ('k') | command_buffer/service/win/d3d9/sampler_d3d9.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698