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

Unified Diff: command_buffer/service/win/d3d9/d3d9_utils.h

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/resource.cc ('k') | command_buffer/service/win/d3d9/effect_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/d3d9_utils.h
===================================================================
--- command_buffer/service/win/d3d9/d3d9_utils.h (revision 26885)
+++ command_buffer/service/win/d3d9/d3d9_utils.h (working copy)
@@ -115,34 +115,37 @@
// TODO: what meaning do we really want to put to our semantics ? How
// do they match the semantics that are set in the effect ? What combination
// of (semantic, index) are supposed to work ?
+ // TODO(gman): This is just plain wrong! Fix it. Converting binormal to
+ // texcoord 7 means there will be conflicts if I have both a Binormal and a
+ // texcoord 7 or 2 binormals both of which we have examples of already in O3D!
switch (semantic) {
case D3DDECLUSAGE_POSITION:
if (semantic_index != 0) return false;
- *out_semantic = vertex_struct::POSITION;
+ *out_semantic = vertex_struct::kPosition;
*out_semantic_index = 0;
return true;
case D3DDECLUSAGE_NORMAL:
if (semantic_index != 0) return false;
- *out_semantic = vertex_struct::NORMAL;
+ *out_semantic = vertex_struct::kNormal;
*out_semantic_index = 0;
return true;
case D3DDECLUSAGE_TANGENT:
if (semantic_index != 0) return false;
- *out_semantic = vertex_struct::TEX_COORD;
+ *out_semantic = vertex_struct::kTexCoord;
*out_semantic_index = 6;
return true;
case D3DDECLUSAGE_BINORMAL:
if (semantic_index != 0) return false;
- *out_semantic = vertex_struct::TEX_COORD;
+ *out_semantic = vertex_struct::kTexCoord;
*out_semantic_index = 7;
return true;
case D3DDECLUSAGE_COLOR:
if (semantic_index > 1) return false;
- *out_semantic = vertex_struct::COLOR;
+ *out_semantic = vertex_struct::kColor;
*out_semantic_index = semantic_index;
return true;
case D3DDECLUSAGE_TEXCOORD:
- *out_semantic = vertex_struct::TEX_COORD;
+ *out_semantic = vertex_struct::kTexCoord;
*out_semantic_index = semantic_index;
return true;
default:
« no previous file with comments | « command_buffer/service/cross/resource.cc ('k') | command_buffer/service/win/d3d9/effect_d3d9.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698