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

Unified Diff: import/cross/collada.h

Issue 147192: Updates the o3dConverter to turn on filtering by default... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 6 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
Index: import/cross/collada.h
===================================================================
--- import/cross/collada.h (revision 19319)
+++ import/cross/collada.h (working copy)
@@ -154,6 +154,31 @@
FilePath base_path;
};
+ // Collada Param Names.
+ // TODO(gman): Remove these as we switch this stuff to JSON
+ static const char* kLightingTypeParamName;
+
+ // Lighitng Types.
+ // TODO(gman): Remove these as we switch this stuff to JSON
+ static const char* kLightingTypeConstant;
+ static const char* kLightingTypePhong;
+ static const char* kLightingTypeBlinn;
+ static const char* kLightingTypeLambert;
+ static const char* kLightingTypeUnknown;
+
+ // Material Param Names.
+ static const char* kMaterialParamNameEmissive;
+ static const char* kMaterialParamNameAmbient;
+ static const char* kMaterialParamNameDiffuse;
+ static const char* kMaterialParamNameSpecular;
+ static const char* kMaterialParamNameShininess;
+ static const char* kMaterialParamNameSpecularFactor;
+ static const char* kMaterialParamNameEmissiveSampler;
+ static const char* kMaterialParamNameAmbientSampler;
+ static const char* kMaterialParamNameDiffuseSampler;
+ static const char* kMaterialParamNameSpecularSampler;
+ static const char* kMaterialParamNameBumpSampler;
+
// Use this if you need access to data after the import (as the
// converter does).
Collada(Pack* pack, const Options& options);

Powered by Google App Engine
This is Rietveld 408576698