summaryrefslogtreecommitdiff
path: root/source/core/text-io.h
diff options
context:
space:
mode:
authorYONGH\yongh <yonghe@outlook.com>2017-10-20 18:24:30 -0400
committerYONGH\yongh <yonghe@outlook.com>2017-10-20 18:24:30 -0400
commit0ee4d4b54732239b946bae7fde32bb21aa5a3ec3 (patch)
tree0c5f4a7f6f43e60802d354aa98a3983994f4f4bd /source/core/text-io.h
parent5a18dc704a2f5eecebcbdd77682a40ba8316d253 (diff)
in-progress work: allow render-test to generate and bind various resource inputs for running test shaders with arbitrary parameter definitions.
This commit contains the parser of the resource input definition.
Diffstat (limited to 'source/core/text-io.h')
-rw-r--r--source/core/text-io.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/core/text-io.h b/source/core/text-io.h
index e4bdc6e2d..c914e340a 100644
--- a/source/core/text-io.h
+++ b/source/core/text-io.h
@@ -311,28 +311,6 @@ namespace Slang
stream = 0;
}
};
-
- inline List<String> Split(String text, char c)
- {
- List<String> result;
- StringBuilder sb;
- for (int i = 0; i < text.Length(); i++)
- {
- if (text[i] == c)
- {
- auto str = sb.ToString();
- if (str.Length() != 0)
- result.Add(str);
- sb.Clear();
- }
- else
- sb << text[i];
- }
- auto lastStr = sb.ToString();
- if (lastStr.Length())
- result.Add(lastStr);
- return result;
- }
}
#endif