标签: qt textures sdl qwidget qimage
我找到了将SDL_Surface转换为QImage的方法。
QImage MainWindow::createFromSurface(SDL_Surface * surf) { QImage img(static_cast<uchar*>(surf->pixels), surf->w, surf->h, QImage::Format_RGB32); return img; }
有没有办法转换SDL_Texture?