loader: Re-apply commit to clean up map RHS bracket operators.

Guard or replace all occurances of a std::map lookup using bracket
operators on RHS of assignment, to avoid the possibility of an
unintended insertion into the map.
5 files changed
tree: 525346c61aa5da0107fcdd12c3969bd3efe70014
  1. doc/
  2. external/
  3. include/
  4. specification/
  5. src/
  6. .appveyor.yml
  7. .editorconfig
  8. .gitattributes
  9. .gitignore
  10. BUILDING.md
  11. CHANGELOG.SDK.md
  12. checkCodespell
  13. CMakeLists.txt
  14. CODE_OF_CONDUCT.md
  15. LICENSE
  16. openxr-codespell.exclude
  17. README.md
  18. runClangFormat.sh
README.md

OpenXR ® Software Development Kit (SDK) Project

NOTE: This repository contains components that will eventually be assembled into an OpenXR SDK, but are currently not organized nor packaged as a distributable SDK.

This repository contains source code and build scripts for implementations of the OpenXR loader, validation layers, and code samples.

The authoritative public repository is located at https://github.com/KhronosGroup/OpenXR-SDK/. It hosts the public Issue tracker, and accepts patches (Pull Requests) from the general public.

Directory Structure

BUILDING.md           Instructions for building the projects
README.md             This file
COPYING.md            Copyright and licensing information
CODE_OF_CONDUCT.md    Code of Conduct
external/             External code for projects in the repo
include/              OpenXR platform include file
specification/        xr.xml file
src/                  Source code for various projects
src/api_layer         Sample code for developing API layers
src/loader            OpenXR loader code
src/tests/            various test code (if looking for sample code start with hello_xr/)

Currently the best sample code is in src/tests/hello_xr/. More will be added in the future.

This structure is for the provisional specification. Things are incomplete at launch but will be added to going forward.

Building

See BUILDING.md