mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-06 14:23:12 +00:00
Some comment tweaks
This commit is contained in:
parent
6756e9d3d7
commit
d26b17f320
@ -1,6 +1,6 @@
|
|||||||
/*******************************************************************************************
|
/*******************************************************************************************
|
||||||
*
|
*
|
||||||
* rexm [raylib examples manager] - A simple command-line tool to manage raylib examples
|
* rexm [raylib examples manager] - A simple and easy-to-use raylib examples collection manager
|
||||||
*
|
*
|
||||||
* Supported processes:
|
* Supported processes:
|
||||||
* - create <new_example_name>
|
* - create <new_example_name>
|
||||||
@ -8,8 +8,9 @@
|
|||||||
* - rename <old_examples_name> <new_example_name>
|
* - rename <old_examples_name> <new_example_name>
|
||||||
* - remove <example_name>
|
* - remove <example_name>
|
||||||
* - build <example_name>
|
* - build <example_name>
|
||||||
* - validate
|
* - test <example_name>
|
||||||
* - update
|
* - validate // All examples
|
||||||
|
* - update // All examples
|
||||||
*
|
*
|
||||||
* Files involved in the processes:
|
* Files involved in the processes:
|
||||||
* - raylib/examples/<category>/<category>_example_name.c
|
* - raylib/examples/<category>/<category>_example_name.c
|
||||||
@ -86,7 +87,7 @@ typedef struct {
|
|||||||
char author[64]; // Example author
|
char author[64]; // Example author
|
||||||
char authorGitHub[64]; // Example author, GitHub user name
|
char authorGitHub[64]; // Example author, GitHub user name
|
||||||
|
|
||||||
int status; // Example validation status info
|
int status; // Example validation status flags
|
||||||
int resCount; // Example resources counter
|
int resCount; // Example resources counter
|
||||||
char **resPaths; // Example resources paths (MAX: 256)
|
char **resPaths; // Example resources paths (MAX: 256)
|
||||||
} rlExampleInfo;
|
} rlExampleInfo;
|
||||||
@ -119,9 +120,9 @@ typedef enum {
|
|||||||
OP_RENAME = 3, // Rename existing example
|
OP_RENAME = 3, // Rename existing example
|
||||||
OP_REMOVE = 4, // Remove existing example
|
OP_REMOVE = 4, // Remove existing example
|
||||||
OP_VALIDATE = 5, // Validate examples, using [examples_list.txt] as main source by default
|
OP_VALIDATE = 5, // Validate examples, using [examples_list.txt] as main source by default
|
||||||
OP_UPDATE = 6, // Validate and update required examples (as far as possible)
|
OP_UPDATE = 6, // Validate and update required examples (as far as possible): ALL
|
||||||
OP_BUILD = 7, // Build example for desktop and web, copy web output
|
OP_BUILD = 7, // Build example(s) for desktop and web, copy web output - Multiple examples supported
|
||||||
OP_TEST = 8, // Test example: check output LOG WARNINGS
|
OP_TEST = 8, // Test example(s), checking output log "WARNING" - Multiplee examples supported
|
||||||
} rlExampleOperation;
|
} rlExampleOperation;
|
||||||
|
|
||||||
static const char *exCategories[REXM_MAX_EXAMPLE_CATEGORIES] = { "core", "shapes", "textures", "text", "models", "shaders", "audio", "others" };
|
static const char *exCategories[REXM_MAX_EXAMPLE_CATEGORIES] = { "core", "shapes", "textures", "text", "models", "shaders", "audio", "others" };
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user