Skip to content

Commit c17f82a

Browse files
committed
REMOVED: core_basic_window_web
The example is not following examples conventions and it will be moved to `others` with a new name
1 parent d97e0a8 commit c17f82a

7 files changed

Lines changed: 8 additions & 673 deletions

File tree

examples/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,6 @@ CORE = \
512512
core/core_automation_events \
513513
core/core_basic_screen_manager \
514514
core/core_basic_window \
515-
core/core_basic_window_web \
516515
core/core_custom_frame_control \
517516
core/core_custom_logging \
518517
core/core_drop_files \
@@ -649,8 +648,8 @@ SHADERS = \
649648
shaders/shaders_shapes_textures \
650649
shaders/shaders_simple_mask \
651650
shaders/shaders_spotlight \
652-
shaders/shaders_texture_rendering \
653651
shaders/shaders_texture_outline \
652+
shaders/shaders_texture_rendering \
654653
shaders/shaders_texture_tiling \
655654
shaders/shaders_texture_waves \
656655
shaders/shaders_vertex_displacement \

examples/Makefile.Web

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,6 @@ CORE = \
512512
core/core_automation_events \
513513
core/core_basic_screen_manager \
514514
core/core_basic_window \
515-
core/core_basic_window_web \
516515
core/core_custom_frame_control \
517516
core/core_custom_logging \
518517
core/core_drop_files \
@@ -649,8 +648,8 @@ SHADERS = \
649648
shaders/shaders_shapes_textures \
650649
shaders/shaders_simple_mask \
651650
shaders/shaders_spotlight \
652-
shaders/shaders_texture_rendering \
653651
shaders/shaders_texture_outline \
652+
shaders/shaders_texture_rendering \
654653
shaders/shaders_texture_tiling \
655654
shaders/shaders_texture_waves \
656655
shaders/shaders_vertex_displacement \
@@ -718,9 +717,6 @@ core/core_basic_screen_manager: core/core_basic_screen_manager.c
718717
core/core_basic_window: core/core_basic_window.c
719718
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
720719

721-
core/core_basic_window_web: core/core_basic_window_web.c
722-
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
723-
724720
core/core_custom_frame_control: core/core_custom_frame_control.c
725721
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
726722

@@ -1267,15 +1263,15 @@ shaders/shaders_spotlight: shaders/shaders_spotlight.c
12671263
--preload-file shaders/resources/raysan.png@resources/raysan.png \
12681264
--preload-file shaders/resources/shaders/glsl100/spotlight.fs@resources/shaders/glsl100/spotlight.fs
12691265

1270-
shaders/shaders_texture_rendering: shaders/shaders_texture_rendering.c
1271-
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1272-
--preload-file shaders/resources/shaders/glsl100/cubes_panning.fs@resources/shaders/glsl100/cubes_panning.fs
1273-
12741266
shaders/shaders_texture_outline: shaders/shaders_texture_outline.c
12751267
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
12761268
--preload-file shaders/resources/fudesumi.png@resources/fudesumi.png \
12771269
--preload-file shaders/resources/shaders/glsl100/outline.fs@resources/shaders/glsl100/outline.fs
12781270

1271+
shaders/shaders_texture_rendering: shaders/shaders_texture_rendering.c
1272+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1273+
--preload-file shaders/resources/shaders/glsl100/cubes_panning.fs@resources/shaders/glsl100/cubes_panning.fs
1274+
12791275
shaders/shaders_texture_tiling: shaders/shaders_texture_tiling.c
12801276
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
12811277
--preload-file shaders/resources/cubicmap_atlas.png@resources/cubicmap_atlas.png \

examples/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ You may find it easier to use than other toolchains, especially when it comes to
1616
- `zig build [module]` to compile all examples for a module (e.g. `zig build core`)
1717
- `zig build [example]` to compile _and run_ a particular example (e.g. `zig build core_basic_window`)
1818

19-
## EXAMPLES COLLECTION [TOTAL: 161]
19+
## EXAMPLES COLLECTION [TOTAL: 160]
2020

21-
### category: core [36]
21+
### category: core [35]
2222

2323
Examples using raylib[core](../src/rcore.c) platform functionality like window creation, inputs, drawing modes and system functionality.
2424

@@ -56,7 +56,6 @@ Examples using raylib[core](../src/rcore.c) platform functionality like window c
5656
| [core_custom_frame_control](core/core_custom_frame_control.c) | <img src="core/core_custom_frame_control.png" alt="core_custom_frame_control" width="80"> | ⭐⭐⭐⭐️ | 4.0 | 4.0 | [Ramon Santamaria](https://github.com/raysan5) |
5757
| [core_smooth_pixelperfect](core/core_smooth_pixelperfect.c) | <img src="core/core_smooth_pixelperfect.png" alt="core_smooth_pixelperfect" width="80"> | ⭐⭐⭐☆ | 3.7 | 4.0 | [Giancamillo Alessandroni](https://github.com/NotManyIdeasDev) |
5858
| [core_random_sequence](core/core_random_sequence.c) | <img src="core/core_random_sequence.png" alt="core_random_sequence" width="80"> | ⭐☆☆☆ | 5.0 | 5.0 | [Dalton Overmyer](https://github.com/REDl3east) |
59-
| [core_basic_window_web](core/core_basic_window_web.c) | <img src="core/core_basic_window_web.png" alt="core_basic_window_web" width="80"> | ⭐☆☆☆ | 1.3 | 1.3 | [Ramon Santamaria](https://github.com/raysan5) |
6059
| [core_input_gestures_web](core/core_input_gestures_web.c) | <img src="core/core_input_gestures_web.png" alt="core_input_gestures_web" width="80"> | ⭐⭐☆☆ | 4.6 | 4.6 | [ubkp](https://github.com/ubkp) |
6160
| [core_automation_events](core/core_automation_events.c) | <img src="core/core_automation_events.png" alt="core_automation_events" width="80"> | ⭐⭐⭐☆ | 5.0 | 5.0 | [Ramon Santamaria](https://github.com/raysan5) |
6261
| [core_high_dpi](core/core_high_dpi.c) | <img src="core/core_high_dpi.png" alt="core_high_dpi" width="80"> | ⭐☆☆☆ | 5.0 | 5.0 | [Jonathan Marler](https://github.com/marler8997) |

examples/core/core_basic_window_web.c

Lines changed: 0 additions & 89 deletions
This file was deleted.
-14.8 KB
Binary file not shown.

examples/examples_list.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ core;core_basic_screen_manager;⭐️☆☆☆;4.0;4.0;"Ramon Santamaria";@raysa
3939
core;core_custom_frame_control;⭐️⭐️⭐️⭐️;4.0;4.0;"Ramon Santamaria";@raysan5
4040
core;core_smooth_pixelperfect;⭐️⭐️⭐️☆;3.7;4.0;"Giancamillo Alessandroni";@NotManyIdeasDev
4141
core;core_random_sequence;⭐️☆☆☆;5.0;5.0;"Dalton Overmyer";@REDl3east
42-
core;core_basic_window_web;⭐️☆☆☆;1.3;1.3;"Ramon Santamaria";@raysan5
4342
core;core_input_gestures_web;⭐️⭐️☆☆;4.6-dev;4.6-dev;"ubkp";@ubkp
4443
core;core_automation_events;⭐️⭐️⭐️☆;5.0;5.0;"Ramon Santamaria";@raysan5
4544
core;core_high_dpi;⭐️☆☆☆;5.0;5.0;"Jonathan Marler";@marler8997

0 commit comments

Comments
 (0)