Category: Game By Fortran

  • Compare 3 modes of SDL_HINT_RENDER_SCALE_QUALITY

    Using SDL library to render a picture to renderer (monitor ), it sometime become blur when we need to compress/rescale the size of picture. SDL_HINT_RENDER_SCALE_QUALITY , is a hint that specifies scaling quality when rendering (copy picture/texture and paste to monitor through graphic card ) This hint have 3 option : nearest (default ) ,…

  • Multi-task setting file task.json in VS code for Gnu Fortran in Windows

    A quick sample of task.json in VS code for some one need to use multi-command while compiling source by Gnu Fortran in Windows It will automatically compile and after that Self Signed Certification to exe file

  • Covert ogg file and change properties by using ffmpeg in windows

    We need a tools called ffmpeg , it can be installed in windows through msys2 packages mingw-w64-x86_64-ffmpeg. Remember , Add C:\msys64\mingw64\bin to Environment Variables PATH if you want to use it as a commands in PowerShell This is some usefull commands using ffmpeg in powershell : ffmpeg -i file.mp3 -ar 22050 -vn -c:a libvorbis -q:a…