Files
SDL/src/gpu/d3d12
Eddy Jansson aaee09d6ed Don't do NULL-checks before SDL_free()
Replaces the pattern

  if (ptr) {
    SDL_free(ptr);
  }

with

  SDL_free(ptr);
2025-10-20 00:13:09 -07:00
..
2024-08-29 15:57:29 -07:00
2024-09-12 13:41:46 -07:00