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

Unified Diff: cg_to_glsl/convert.py

Issue 1804001: Changed cg_to_glsl converter script to also look in the script's... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 10 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cg_to_glsl/convert.py
===================================================================
--- cg_to_glsl/convert.py (revision 45661)
+++ cg_to_glsl/convert.py (working copy)
@@ -33,6 +33,13 @@
CGC = 'c:/Program Files (x86)/NVIDIA Corporation/Cg/bin/cgc.exe'
if not os.path.exists(CGC):
CGC = 'c:/Program Files (x86)/NVIDIA Corporation/Cg/bin/cgc.exe'
+ if not os.path.exists(CGC):
+ script_path = os.path.abspath(sys.path[0])
+ # Try again looking in the current working directory to match
+ # the layout of the prebuilt o3dConverter binaries.
+ CGC = os.path.join(script_path, 'cgc')
+ if not os.path.exists(CGC):
+ CGC = os.path.join(script_path, 'cgc.exe')
# cgc complains about TANGENT1 and BINORMAL1 semantics, so we hack it by
# replacing standard semantics with ATTR8-ATTR12 and then renaming them back to
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698