Skip to content

Instantly share code, notes, and snippets.

View nishio's full-sized avatar

NISHIO Hirokazu nishio

View GitHub Profile
std::vector<Texture> ts;
void benchmark() {
Stopwatch stopwatch;
Profiler::EnableWarning(false);
stopwatch.start();
for (int i = 0; i < 100; i++) {
const String filename = Format(L"C:/Users/nishio/Desktop/images/pages_0", i + 100, L".png");
ts.emplace_back(filename);
}