A few trivial things, including removing '/' as a command line option indicator so absolute paths work naturally.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@20839 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
20169715df
commit
d7c120f16f
@ -8,6 +8,7 @@ Source Copyright
|
||||
|
||||
|
||||
Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
|
||||
Copyright (C) 2012-2013 LunarG, Inc.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
@ -132,7 +132,7 @@ int C_DECL main(int argc, char* argv[])
|
||||
argc--;
|
||||
argv++;
|
||||
for (; argc >= 1; argc--, argv++) {
|
||||
if (argv[0][0] == '-' || argv[0][0] == '/') {
|
||||
if (argv[0][0] == '-') {
|
||||
switch (argv[0][1]) {
|
||||
case 'd': delay = true; break;
|
||||
|
||||
|
@ -67,6 +67,7 @@ SH_IMPORT_EXPORT int ShInitialize();
|
||||
// Driver should call this at shutdown.
|
||||
//
|
||||
SH_IMPORT_EXPORT int __fastcall ShFinalize();
|
||||
|
||||
//
|
||||
// Types of languages the compiler can consume.
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user