2022-04-12 15:07:18 +03:00
|
|
|
/*
|
2024-01-02 00:15:26 +03:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2023-07-12 19:53:52 +03:00
|
|
|
Copyright 2022 Collabora Ltd.
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
2022-04-12 15:07:18 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TESTUTILS_H
|
|
|
|
#define TESTUTILS_H
|
|
|
|
|
2022-11-27 07:43:38 +03:00
|
|
|
#include <SDL3/SDL.h>
|
2022-04-12 15:07:18 +03:00
|
|
|
|
2024-09-18 17:52:28 +03:00
|
|
|
SDL_Texture *LoadTexture(SDL_Renderer *renderer, const char *file, bool transparent,
|
2022-04-12 15:07:18 +03:00
|
|
|
int *width_out, int *height_out);
|
|
|
|
char *GetNearbyFilename(const char *file);
|
|
|
|
char *GetResourceFilename(const char *user_specified, const char *def);
|
|
|
|
|
|
|
|
#endif
|