MCPcopy Create free account
hub / github.com/blender/cycles / string_to_lower

Function string_to_lower

src/util/string.cpp:210–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210string string_to_lower(const string &s)
211{
212 string r = s;
213 std::transform(r.begin(), r.end(), r.begin(), [](char c) { return std::tolower(c); });
214 return r;
215}
216
217string string_remove_gpu_from_cpu_name(const string &s)
218{

Callers 2

scene_initFunction · 0.85
log_string_to_levelFunction · 0.85

Calls 1

endMethod · 0.80

Tested by

no test coverage detected