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

Unified Diff: command_buffer/service/win/d3d9/gapi_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/gapi_d3d9.h ('k') | command_buffer/service/win/d3d9/geometry_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/gapi_d3d9.cc
===================================================================
--- command_buffer/service/win/d3d9/gapi_d3d9.cc (revision 26886)
+++ command_buffer/service/win/d3d9/gapi_d3d9.cc (working copy)
@@ -182,9 +182,9 @@
const RGBA &color,
float depth,
unsigned int stencil) {
- DWORD flags = (buffers & COLOR ? D3DCLEAR_TARGET : 0) |
- (buffers & DEPTH ? D3DCLEAR_ZBUFFER : 0) |
- (buffers & STENCIL ? D3DCLEAR_STENCIL : 0);
+ DWORD flags = (buffers & kColor ? D3DCLEAR_TARGET : 0) |
+ (buffers & kDepth ? D3DCLEAR_ZBUFFER : 0) |
+ (buffers & kStencil ? D3DCLEAR_STENCIL : 0);
HR(d3d_device_->Clear(0,
NULL,
flags,
@@ -214,7 +214,7 @@
}
// Sets the current VertexStruct. Just keep track of the ID.
-BufferSyncInterface::ParseError GAPID3D9::SetVertexStruct(ResourceID id) {
+BufferSyncInterface::ParseError GAPID3D9::SetVertexStruct(ResourceId id) {
current_vertex_struct_ = id;
validate_streams_ = true;
return BufferSyncInterface::kParseNoError;
@@ -234,19 +234,20 @@
}
// Converts a GAPID3D9::PrimitiveType to a D3DPRIMITIVETYPE.
-static D3DPRIMITIVETYPE D3DPrimitive(GAPID3D9::PrimitiveType primitive_type) {
+static D3DPRIMITIVETYPE D3DPrimitive(
+ command_buffer::PrimitiveType primitive_type) {
switch (primitive_type) {
- case GAPID3D9::POINTS:
+ case command_buffer::kPoints:
return D3DPT_POINTLIST;
- case GAPID3D9::LINES:
+ case command_buffer::kLines:
return D3DPT_LINELIST;
- case GAPID3D9::LINE_STRIPS:
+ case command_buffer::kLineStrips:
return D3DPT_LINESTRIP;
- case GAPID3D9::TRIANGLES:
+ case command_buffer::kTriangles:
return D3DPT_TRIANGLELIST;
- case GAPID3D9::TRIANGLE_STRIPS:
+ case command_buffer::kTriangleStrips:
return D3DPT_TRIANGLESTRIP;
- case GAPID3D9::TRIANGLE_FANS:
+ case command_buffer::kTriangleFans:
return D3DPT_TRIANGLEFAN;
default:
LOG(FATAL) << "Invalid primitive type";
@@ -282,7 +283,7 @@
// Draws with the current vertex struct.
BufferSyncInterface::ParseError GAPID3D9::DrawIndexed(
PrimitiveType primitive_type,
- ResourceID index_buffer_id,
+ ResourceId index_buffer_id,
unsigned int first,
unsigned int count,
unsigned int min_index,
« no previous file with comments | « command_buffer/service/win/d3d9/gapi_d3d9.h ('k') | command_buffer/service/win/d3d9/geometry_d3d9.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698