16; ++i) {
for (int j = 0; j < 16; ++j) {
pos = i * width * 4 + j * 4;
buff << pos;
std::cout << buff.str().c_str();
}
}
выводит pos не 16*16 раз, а бесконечно?
buff << pos; std::cout << buff.str().c_str(); замени на std::cout << std::to_string(pos) << " \n";
а где декларация pos и buff ?
Обсуждают сегодня