🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
430 B

  1. /*
  2. Copyright 1997-2022 Sam Lantinga
  3. Copyright 2022 Collabora Ltd.
  4. SPDX-License-Identifier: Zlib
  5. */
  6. #ifndef TESTUTILS_H
  7. #define TESTUTILS_H
  8. #include "SDL.h"
  9. SDL_Texture *LoadTexture(SDL_Renderer *renderer, const char *file, SDL_bool transparent,
  10. int *width_out, int *height_out);
  11. char *GetNearbyFilename(const char *file);
  12. char *GetResourceFilename(const char *user_specified, const char *def);
  13. #endif