mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2025-05-16 09:48:31 +00:00
Minor fix in documentation.
This commit is contained in:
parent
d8359cd295
commit
2283f4287a
3 changed files with 113 additions and 112 deletions
|
@ -66,7 +66,7 @@ $(function() {
|
||||||
<div class="title">Configuration </div> </div>
|
<div class="title">Configuration </div> </div>
|
||||||
</div><!--header-->
|
</div><!--header-->
|
||||||
<div class="contents">
|
<div class="contents">
|
||||||
<div class="textblock"><p>Please check "CONFIGURATION SECTION" in the code to find macros that you can define before each include of this file or change directly in this file to provide your own implementation of basic facilities like assert, <code>min()</code> and <code>max()</code> functions, mutex etc. C++ STL is used by default, but changing these allows you to get rid of any STL usage if you want, as many game developers tend to do.</p>
|
<div class="textblock"><p>Please check "CONFIGURATION SECTION" in the code to find macros that you can define before each include of this file or change directly in this file to provide your own implementation of basic facilities like assert, <code>min()</code> and <code>max()</code> functions, mutex, atomic etc. The library uses its own implementation of containers by default, but you can switch to using STL containers instead.</p>
|
||||||
<h1><a class="anchor" id="config_Vulkan_functions"></a>
|
<h1><a class="anchor" id="config_Vulkan_functions"></a>
|
||||||
Pointers to Vulkan functions</h1>
|
Pointers to Vulkan functions</h1>
|
||||||
<p>The library uses Vulkan functions straight from the <code>vulkan.h</code> header by default. If you want to provide your own pointers to these functions, e.g. fetched using <code>vkGetInstanceProcAddr()</code> and <code>vkGetDeviceProcAddr()</code>:</p>
|
<p>The library uses Vulkan functions straight from the <code>vulkan.h</code> header by default. If you want to provide your own pointers to these functions, e.g. fetched using <code>vkGetInstanceProcAddr()</code> and <code>vkGetDeviceProcAddr()</code>:</p>
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -800,8 +800,9 @@ That string is also printed in JSON report created by vmaBuildStatsString().
|
||||||
Please check "CONFIGURATION SECTION" in the code to find macros that you can define
|
Please check "CONFIGURATION SECTION" in the code to find macros that you can define
|
||||||
before each include of this file or change directly in this file to provide
|
before each include of this file or change directly in this file to provide
|
||||||
your own implementation of basic facilities like assert, `min()` and `max()` functions,
|
your own implementation of basic facilities like assert, `min()` and `max()` functions,
|
||||||
mutex etc. C++ STL is used by default, but changing these allows you to get rid
|
mutex, atomic etc.
|
||||||
of any STL usage if you want, as many game developers tend to do.
|
The library uses its own implementation of containers by default, but you can switch to using
|
||||||
|
STL containers instead.
|
||||||
|
|
||||||
\section config_Vulkan_functions Pointers to Vulkan functions
|
\section config_Vulkan_functions Pointers to Vulkan functions
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue