diff options
author | bunnei <bunneidev@gmail.com> | 2015-08-17 15:15:46 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-17 15:15:46 +0200 |
commit | ef7eb8bc4c2b761a5dc6623156694be057e7a416 (patch) | |
tree | 8633316bd572f58d1389d3315fea0bc28ad9806e | |
parent | Merge pull request #1034 from yuriks/rg8-textures (diff) | |
parent | Add coding style about includes (diff) | |
download | yuzu-ef7eb8bc4c2b761a5dc6623156694be057e7a416.tar yuzu-ef7eb8bc4c2b761a5dc6623156694be057e7a416.tar.gz yuzu-ef7eb8bc4c2b761a5dc6623156694be057e7a416.tar.bz2 yuzu-ef7eb8bc4c2b761a5dc6623156694be057e7a416.tar.lz yuzu-ef7eb8bc4c2b761a5dc6623156694be057e7a416.tar.xz yuzu-ef7eb8bc4c2b761a5dc6623156694be057e7a416.tar.zst yuzu-ef7eb8bc4c2b761a5dc6623156694be057e7a416.zip |
-rw-r--r-- | CONTRIBUTING.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f2dbdf1a4..28b8b4031 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,22 @@ Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spac * For items that are both defined and declared in two separate files, put the doc-comment only next to the associated declaration. (In a header file, usually.) Otherwise, put it next to the implementation. Never duplicate doc-comments in both places. ```cpp +// Includes should be sorted lexicographically +// STD includes first +#include <map> +#include <memory> + +// then, library includes +#include <nihstro/shared_binary.h> + +// finally, citra includes +#include "common/math_util.h" +#include "common/vector_math.h" + +// each major module is separated +#include "video_core/pica.h" +#include "video_core/video_core.h" + namespace Example { // Namespace contents are not indented |