File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ They can be used for validation of the API or for implementing additional OpenXR
1313
1414## Configuration
1515
16- This project is CMake-based and uses CMake to configure some parts of the source code .
16+ This project is CMake-based. The configuration for the layer manifest, including extension declaration, happens in the top-level CMakeList.txt file .
1717
18- In the make CMakeLists.txt file at the root of the repository, you can edit the following lines:
18+ In the make CMakeLists.txt file at the root of the repository, you should edit the following lines:
1919
2020``` cmake
2121project(OpenXR-layer-template)
@@ -25,7 +25,10 @@ set(layer_version "1")
2525set(layer_description "some text here")
2626```
2727
28- These configure both the source code and the manifest file.
28+ These values are used to configure both the source code and the manifest file for distribution and loading.
29+
30+ Please refer to the comments in the file for more information. For the declaration of OpenXR extensions that you wish to implement,
31+ please refer to the following sections of this readme file.
2932
3033## Building
3134
@@ -127,7 +130,7 @@ This is the internal API that you are expected to access inside `layer_shims.cpp
127130### Macros
128131
129132``` cpp
130- PFN_xrFuctnionName_GetNextLayerFunction (xrFunctionName);
133+ PFN_xrFunctionName GetNextLayerFunction (xrFunctionName);
131134```
132135
133136Return the pointer to `xrFunctionName`, with the correct function pointer type.
You can’t perform that action at this time.
0 commit comments