Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
Common.h
Go to the documentation of this file.
1#ifndef INCLUDE_COMMON_COMMON_H_
2#define INCLUDE_COMMON_COMMON_H_
3
4#include "Core/Common/pch.h"
5
6
7#ifdef TRACY_ENABLE
8# include <tracy/Tracy.hpp>
9# define PROFILE_SCOPE ZoneScoped
10# define PROFILE_SCOPE_N(name) ZoneScopedN(name)
11# define PROFILE_FRAME FrameMark
12#else
13# define PROFILE_SCOPE
14# define PROFILE_SCOPE_N(name)
15# define PROFILE_FRAME
16#endif
17
18namespace Common
19{
33SDL_GPUShader *LoadShader(SDL_GPUDevice *device,
34 const std::string &shaderFilename,
35 Uint32 samplerCount,
36 Uint32 uniformBufferCount,
37 Uint32 storageBufferCount,
38 Uint32 storageTextureCount);
39
40SDL_Surface* LoadImage(const std::string &imageFileName, int desiredChannels);
41} // namespace Common
42
43#endif // INCLUDE_COMMON_COMMON_H_
Definition Common.cpp:6
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