1#ifndef INCLUDE_COMMON_COMMON_H_
2#define INCLUDE_COMMON_COMMON_H_
8# include <tracy/Tracy.hpp>
9# define PROFILE_SCOPE ZoneScoped
10# define PROFILE_SCOPE_N(name) ZoneScopedN(name)
11# define PROFILE_FRAME FrameMark
14# define PROFILE_SCOPE_N(name)
33SDL_GPUShader *
LoadShader(SDL_GPUDevice *device,
34 const std::string &shaderFilename,
36 Uint32 uniformBufferCount,
37 Uint32 storageBufferCount,
38 Uint32 storageTextureCount);
40SDL_Surface*
LoadImage(
const std::string &imageFileName,
int desiredChannels);
SDL_Surface * LoadImage(const std::string &imageFileName, int desiredChannels)
Definition Common.cpp:76
SDL_GPUShader * LoadShader(SDL_GPUDevice *device, const std::string &shaderFilename, const Uint32 samplerCount, const Uint32 uniformBufferCount, const Uint32 storageBufferCount, const Uint32 storageTextureCount)
This is a function that returns a compiled shader after taking the path to shader.
Definition Common.cpp:7