TinyGPU
Loading...
Searching...
No Matches
src
TinyGPU
Vector.h
Go to the documentation of this file.
1
#
pragma
once
2
#
include
<
vector
>
3
4
namespace
tinygpu
{
5
6
#
if
TINYGPU_USE_PSRAM_ALLOCATOR
7
// Type alias for Vector using PSRAMAllocator
8
template
<
typename
T
>
9
using
Vector
=
std
::
vector
<
T
,
PSRAMAllocator
<
T
>>;
10
#
else
11
// Fallback to standard vector if PSRAMAllocator is not used
12
template
<
typename
T
>
13
using
Vector
=
std
::
vector
<
T
>;
14
#
endif
15
16
}
// namespace tinygpu
tinygpu
Definition:
AVIWriter.h:9
Generated by
1.9.6