Skip to content

Commit e3738c1

Browse files
committed
REXM: UPDATE: Reviewed all examples requirements
1 parent d56371c commit e3738c1

19 files changed

+3054
-31
lines changed

examples/Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,8 @@ SHAPES = \
587587
shapes/shapes_rectangle_scaling \
588588
shapes/shapes_recursive_tree \
589589
shapes/shapes_ring_drawing \
590+
shapes/shapes_rlgl_color_wheel \
591+
shapes/shapes_rlgl_triangle \
590592
shapes/shapes_rounded_rectangle_drawing \
591593
shapes/shapes_simple_particles \
592594
shapes/shapes_splines_drawing \
@@ -615,11 +617,12 @@ TEXTURES = \
615617
textures/textures_particles_blending \
616618
textures/textures_polygon_drawing \
617619
textures/textures_raw_data \
620+
textures/textures_screen_buffer \
618621
textures/textures_sprite_animation \
619622
textures/textures_sprite_button \
620623
textures/textures_sprite_explosion \
624+
textures/textures_sprite_stacking \
621625
textures/textures_srcrec_dstrec \
622-
textures/textures_screen_buffer \
623626
textures/textures_textured_curve \
624627
textures/textures_tiled_drawing \
625628
textures/textures_to_image
@@ -650,6 +653,7 @@ MODELS = \
650653
models/models_box_collisions \
651654
models/models_cubicmap_rendering \
652655
models/models_decals \
656+
models/models_directional_billboard \
653657
models/models_first_person_maze \
654658
models/models_geometric_shapes \
655659
models/models_heightmap_rendering \
@@ -704,7 +708,7 @@ SHADERS = \
704708
shaders/shaders_vertex_displacement
705709

706710
AUDIO = \
707-
audio/audio_fft_spectrum_visualizer \
711+
audio/audio_fft_spectrum_visualizer \
708712
audio/audio_mixed_processor \
709713
audio/audio_module_playing \
710714
audio/audio_music_stream \

examples/Makefile.Web

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,8 @@ SHAPES = \
575575
shapes/shapes_rectangle_scaling \
576576
shapes/shapes_recursive_tree \
577577
shapes/shapes_ring_drawing \
578+
shapes/shapes_rlgl_color_wheel \
579+
shapes/shapes_rlgl_triangle \
578580
shapes/shapes_rounded_rectangle_drawing \
579581
shapes/shapes_simple_particles \
580582
shapes/shapes_splines_drawing \
@@ -603,11 +605,12 @@ TEXTURES = \
603605
textures/textures_particles_blending \
604606
textures/textures_polygon_drawing \
605607
textures/textures_raw_data \
608+
textures/textures_screen_buffer \
606609
textures/textures_sprite_animation \
607610
textures/textures_sprite_button \
608611
textures/textures_sprite_explosion \
612+
textures/textures_sprite_stacking \
609613
textures/textures_srcrec_dstrec \
610-
textures/textures_screen_buffer \
611614
textures/textures_textured_curve \
612615
textures/textures_tiled_drawing \
613616
textures/textures_to_image
@@ -638,6 +641,7 @@ MODELS = \
638641
models/models_box_collisions \
639642
models/models_cubicmap_rendering \
640643
models/models_decals \
644+
models/models_directional_billboard \
641645
models/models_first_person_maze \
642646
models/models_geometric_shapes \
643647
models/models_heightmap_rendering \
@@ -692,6 +696,7 @@ SHADERS = \
692696
shaders/shaders_vertex_displacement
693697

694698
AUDIO = \
699+
audio/audio_fft_spectrum_visualizer \
695700
audio/audio_mixed_processor \
696701
audio/audio_module_playing \
697702
audio/audio_music_stream \
@@ -940,6 +945,12 @@ shapes/shapes_recursive_tree: shapes/shapes_recursive_tree.c
940945
shapes/shapes_ring_drawing: shapes/shapes_ring_drawing.c
941946
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
942947

948+
shapes/shapes_rlgl_color_wheel: shapes/shapes_rlgl_color_wheel.c
949+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
950+
951+
shapes/shapes_rlgl_triangle: shapes/shapes_rlgl_triangle.c
952+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
953+
943954
shapes/shapes_rounded_rectangle_drawing: shapes/shapes_rounded_rectangle_drawing.c
944955
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
945956

@@ -1041,6 +1052,9 @@ textures/textures_raw_data: textures/textures_raw_data.c
10411052
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10421053
--preload-file textures/resources/fudesumi.raw@resources/fudesumi.raw
10431054

1055+
textures/textures_screen_buffer: textures/textures_screen_buffer.c
1056+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
1057+
10441058
textures/textures_sprite_animation: textures/textures_sprite_animation.c
10451059
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10461060
--preload-file textures/resources/scarfy.png@resources/scarfy.png
@@ -1055,13 +1069,14 @@ textures/textures_sprite_explosion: textures/textures_sprite_explosion.c
10551069
--preload-file textures/resources/boom.wav@resources/boom.wav \
10561070
--preload-file textures/resources/explosion.png@resources/explosion.png
10571071

1072+
textures/textures_sprite_stacking: textures/textures_sprite_stacking.c
1073+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1074+
--preload-file textures/resources/booth.png@resources/booth.png
1075+
10581076
textures/textures_srcrec_dstrec: textures/textures_srcrec_dstrec.c
10591077
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10601078
--preload-file textures/resources/scarfy.png@resources/scarfy.png
10611079

1062-
textures/textures_screen_buffer: textures/textures_screen_buffer.c
1063-
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
1064-
10651080
textures/textures_textured_curve: textures/textures_textured_curve.c
10661081
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10671082
--preload-file textures/resources/road.png@resources/road.png
@@ -1184,6 +1199,10 @@ models/models_decals: models/models_decals.c
11841199
--preload-file models/resources/models/obj/character_diffuse.png@resources/models/obj/character_diffuse.png \
11851200
--preload-file models/resources/raylib_logo.png@resources/raylib_logo.png
11861201

1202+
models/models_directional_billboard: models/models_directional_billboard.c
1203+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1204+
--preload-file models/resources/skillbot.png@resources/skillbot.png
1205+
11871206
models/models_first_person_maze: models/models_first_person_maze.c
11881207
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
11891208
--preload-file models/resources/cubicmap.png@resources/cubicmap.png \
@@ -1452,6 +1471,10 @@ shaders/shaders_vertex_displacement: shaders/shaders_vertex_displacement.c
14521471
--preload-file shaders/resources/shaders/glsl100/vertex_displacement.fs@resources/shaders/glsl100/vertex_displacement.fs
14531472

14541473
# Compile AUDIO examples
1474+
audio/audio_fft_spectrum_visualizer: audio/audio_fft_spectrum_visualizer.c
1475+
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1476+
--preload-file audio/resources/country.mp3@resources/country.mp3
1477+
14551478
audio/audio_mixed_processor: audio/audio_mixed_processor.c
14561479
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
14571480
--preload-file audio/resources/country.mp3@resources/country.mp3 \

examples/README.md

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

20-
## EXAMPLES COLLECTION [TOTAL: 195]
20+
## EXAMPLES COLLECTION [TOTAL: 200]
2121

2222
### category: core [47]
2323

@@ -43,7 +43,7 @@ Examples using raylib [core](../src/rcore.c) module platform functionality: wind
4343
| [core_3d_camera_free](core/core_3d_camera_free.c) | <img src="core/core_3d_camera_free.png" alt="core_3d_camera_free" width="80"> | ⭐☆☆☆ | 1.3 | 1.3 | [Ramon Santamaria](https://github.com/raysan5) |
4444
| [core_3d_camera_first_person](core/core_3d_camera_first_person.c) | <img src="core/core_3d_camera_first_person.png" alt="core_3d_camera_first_person" width="80"> | ⭐⭐☆☆ | 1.3 | 1.3 | [Ramon Santamaria](https://github.com/raysan5) |
4545
| [core_3d_camera_split_screen](core/core_3d_camera_split_screen.c) | <img src="core/core_3d_camera_split_screen.png" alt="core_3d_camera_split_screen" width="80"> | ⭐⭐⭐☆ | 3.7 | 4.0 | [Jeffery Myers](https://github.com/JeffM2501) |
46-
| [core_3d_camera_fps](core/core_3d_camera_fps.c) | <img src="core/core_3d_camera_fps.png" alt="core_3d_camera_fps" width="80"> | ⭐⭐⭐☆ | 5.5 | 5.5 | [Agnis Aldins](https://github.com/nezvers) |
46+
| [core_3d_camera_fps](core/core_3d_camera_fps.c) | <img src="core/core_3d_camera_fps.png" alt="core_3d_camera_fps" width="80"> | ⭐⭐⭐☆ | 5.5 | 5.5 | [Agnis Aldiņš](https://github.com/nezvers) |
4747
| [core_3d_picking](core/core_3d_picking.c) | <img src="core/core_3d_picking.png" alt="core_3d_picking" width="80"> | ⭐⭐☆☆ | 1.3 | 4.0 | [Ramon Santamaria](https://github.com/raysan5) |
4848
| [core_world_screen](core/core_world_screen.c) | <img src="core/core_world_screen.png" alt="core_world_screen" width="80"> | ⭐⭐☆☆ | 1.3 | 1.4 | [Ramon Santamaria](https://github.com/raysan5) |
4949
| [core_window_flags](core/core_window_flags.c) | <img src="core/core_window_flags.png" alt="core_window_flags" width="80"> | ⭐⭐⭐☆ | 3.5 | 3.5 | [Ramon Santamaria](https://github.com/raysan5) |
@@ -64,7 +64,7 @@ Examples using raylib [core](../src/rcore.c) module platform functionality: wind
6464
| [core_high_dpi](core/core_high_dpi.c) | <img src="core/core_high_dpi.png" alt="core_high_dpi" width="80"> | ⭐⭐☆☆ | 5.0 | 5.5 | [Jonathan Marler](https://github.com/marler8997) |
6565
| [core_render_texture](core/core_render_texture.c) | <img src="core/core_render_texture.png" alt="core_render_texture" width="80"> | ⭐☆☆☆ | 5.6-dev | 5.6-dev | [Ramon Santamaria](https://github.com/raysan5) |
6666
| [core_undo_redo](core/core_undo_redo.c) | <img src="core/core_undo_redo.png" alt="core_undo_redo" width="80"> | ⭐⭐⭐☆ | 5.5 | 5.6 | [Ramon Santamaria](https://github.com/raysan5) |
67-
| [core_viewport_scaling](core/core_viewport_scaling.c) | <img src="core/core_viewport_scaling.png" alt="core_viewport_scaling" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [Agnis Aldins](https://github.com/nezvers) |
67+
| [core_viewport_scaling](core/core_viewport_scaling.c) | <img src="core/core_viewport_scaling.png" alt="core_viewport_scaling" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [Agnis Aldiņš](https://github.com/nezvers) |
6868
| [core_input_actions](core/core_input_actions.c) | <img src="core/core_input_actions.png" alt="core_input_actions" width="80"> | ⭐⭐☆☆ | 5.5 | 5.6 | [Jett](https://github.com/JettMonstersGoBoom) |
6969
| [core_directory_files](core/core_directory_files.c) | <img src="core/core_directory_files.png" alt="core_directory_files" width="80"> | ⭐☆☆☆ | 5.5 | 5.6 | [Hugo ARNAL](https://github.com/hugoarnal) |
7070
| [core_highdpi_testbed](core/core_highdpi_testbed.c) | <img src="core/core_highdpi_testbed.png" alt="core_highdpi_testbed" width="80"> | ⭐☆☆☆ | 5.6-dev | 5.6-dev | [Ramon Santamaria](https://github.com/raysan5) |
@@ -73,7 +73,7 @@ Examples using raylib [core](../src/rcore.c) module platform functionality: wind
7373
| [core_text_file_loading](core/core_text_file_loading.c) | <img src="core/core_text_file_loading.png" alt="core_text_file_loading" width="80"> | ⭐☆☆☆ | 5.5 | 5.6 | [Aanjishnu Bhattacharyya](https://github.com/NimComPoo-04) |
7474
| [core_compute_hash](core/core_compute_hash.c) | <img src="core/core_compute_hash.png" alt="core_compute_hash" width="80"> | ⭐⭐☆☆ | 5.6-dev | 5.6-dev | [Ramon Santamaria](https://github.com/raysan5) |
7575

76-
### category: shapes [34]
76+
### category: shapes [36]
7777

7878
Examples using raylib shapes drawing functionality, provided by raylib [shapes](../src/rshapes.c) module.
7979

@@ -113,8 +113,10 @@ Examples using raylib shapes drawing functionality, provided by raylib [shapes](
113113
| [shapes_starfield_effect](shapes/shapes_starfield_effect.c) | <img src="shapes/shapes_starfield_effect.png" alt="shapes_starfield_effect" width="80"> | ⭐⭐☆☆ | 5.5 | 5.6-dev | [JP Mortiboys](https://github.com/themushroompirates) |
114114
| [shapes_lines_drawing](shapes/shapes_lines_drawing.c) | <img src="shapes/shapes_lines_drawing.png" alt="shapes_lines_drawing" width="80"> | ⭐☆☆☆ | 5.6-dev | 5.6 | [Robin](https://github.com/RobinsAviary) |
115115
| [shapes_math_angle_rotation](shapes/shapes_math_angle_rotation.c) | <img src="shapes/shapes_math_angle_rotation.png" alt="shapes_math_angle_rotation" width="80"> | ⭐☆☆☆ | 5.6-dev | 5.6 | [Kris](https://github.com/krispy-snacc) |
116+
| [shapes_rlgl_color_wheel](shapes/shapes_rlgl_color_wheel.c) | <img src="shapes/shapes_rlgl_color_wheel.png" alt="shapes_rlgl_color_wheel" width="80"> | ⭐⭐⭐☆ | 5.6-dev | 5.6-dev | [Robin](https://github.com/RobinsAviary) |
117+
| [shapes_rlgl_triangle](shapes/shapes_rlgl_triangle.c) | <img src="shapes/shapes_rlgl_triangle.png" alt="shapes_rlgl_triangle" width="80"> | ⭐⭐☆☆ | 5.6-dev | 5.6-dev | [Robin](https://github.com/RobinsAviary) |
116118

117-
### category: textures [27]
119+
### category: textures [28]
118120

119121
Examples using raylib textures functionality, including image/textures loading/generation and drawing, provided by raylib [textures](../src/rtextures.c) module.
120122

@@ -145,8 +147,9 @@ Examples using raylib textures functionality, including image/textures loading/g
145147
| [textures_image_kernel](textures/textures_image_kernel.c) | <img src="textures/textures_image_kernel.png" alt="textures_image_kernel" width="80"> | ⭐⭐⭐⭐️ | 1.3 | 1.3 | [Karim Salem](https://github.com/kimo-s) |
146148
| [textures_image_channel](textures/textures_image_channel.c) | <img src="textures/textures_image_channel.png" alt="textures_image_channel" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [Bruno Cabral](https://github.com/brccabral) |
147149
| [textures_image_rotate](textures/textures_image_rotate.c) | <img src="textures/textures_image_rotate.png" alt="textures_image_rotate" width="80"> | ⭐⭐☆☆ | 1.0 | 1.0 | [Ramon Santamaria](https://github.com/raysan5) |
148-
| [textures_screen_buffer](textures/textures_screen_buffer.c) | <img src="textures/textures_screen_buffer.png" alt="textures_screen_buffer" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [Agnis Aldins](https://github.com/nezvers) |
150+
| [textures_screen_buffer](textures/textures_screen_buffer.c) | <img src="textures/textures_screen_buffer.png" alt="textures_screen_buffer" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [Agnis Aldiņš](https://github.com/nezvers) |
149151
| [textures_textured_curve](textures/textures_textured_curve.c) | <img src="textures/textures_textured_curve.png" alt="textures_textured_curve" width="80"> | ⭐⭐⭐☆ | 4.5 | 4.5 | [Jeffery Myers](https://github.com/JeffM2501) |
152+
| [textures_sprite_stacking](textures/textures_sprite_stacking.c) | <img src="textures/textures_sprite_stacking.png" alt="textures_sprite_stacking" width="80"> | ⭐⭐☆☆ | 5.6-dev | 6.0 | [Robin](https://github.com/RobinsAviary) |
150153

151154
### category: text [15]
152155

@@ -170,7 +173,7 @@ Examples using raylib text functionality, including sprite fonts loading/generat
170173
| [text_inline_styling](text/text_inline_styling.c) | <img src="text/text_inline_styling.png" alt="text_inline_styling" width="80"> | ⭐⭐⭐☆ | 5.6-dev | 5.6-dev | [Wagner Barongello](https://github.com/SultansOfCode) |
171174
| [text_words_alignment](text/text_words_alignment.c) | <img src="text/text_words_alignment.png" alt="text_words_alignment" width="80"> | ⭐☆☆☆ | 5.6-dev | 5.6-dev | [JP Mortiboys](https://github.com/themushroompirates) |
172175

173-
### category: models [26]
176+
### category: models [27]
174177

175178
Examples using raylib models functionality, including models loading/generation and drawing, provided by raylib [models](../src/rmodels.c) module.
176179

@@ -202,6 +205,7 @@ Examples using raylib models functionality, including models loading/generation
202205
| [models_basic_voxel](models/models_basic_voxel.c) | <img src="models/models_basic_voxel.png" alt="models_basic_voxel" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [Tim Little](https://github.com/timlittle) |
203206
| [models_rotating_cube](models/models_rotating_cube.c) | <img src="models/models_rotating_cube.png" alt="models_rotating_cube" width="80"> | ⭐☆☆☆ | 5.6-dev | 5.6-dev | [Jopestpe](https://github.com/jopestpe) |
204207
| [models_decals](models/models_decals.c) | <img src="models/models_decals.png" alt="models_decals" width="80"> | ⭐⭐⭐⭐️ | 5.6-dev | 5.6-dev | [JP Mortiboys](https://github.com/themushroompirates) |
208+
| [models_directional_billboard](models/models_directional_billboard.c) | <img src="models/models_directional_billboard.png" alt="models_directional_billboard" width="80"> | ⭐⭐☆☆ | 5.6-dev | 5.6 | [Robin](https://github.com/RobinsAviary) |
205209

206210
### category: shaders [32]
207211

@@ -242,7 +246,7 @@ Examples using raylib shaders functionality, including shaders loading, paramete
242246
| [shaders_rounded_rectangle](shaders/shaders_rounded_rectangle.c) | <img src="shaders/shaders_rounded_rectangle.png" alt="shaders_rounded_rectangle" width="80"> | ⭐⭐⭐☆ | 5.5 | 5.5 | [Anstro Pleuton](https://github.com/anstropleuton) |
243247
| [shaders_depth_rendering](shaders/shaders_depth_rendering.c) | <img src="shaders/shaders_depth_rendering.png" alt="shaders_depth_rendering" width="80"> | ⭐⭐⭐☆ | 5.6-dev | 5.6-dev | [Luís Almeida](https://github.com/luis605) |
244248

245-
### category: audio [8]
249+
### category: audio [9]
246250

247251
Examples using raylib audio functionality, including sound/music loading and playing. This functionality is provided by raylib [raudio](../src/raudio.c) module. Note this module can be used standalone independently of raylib.
248252

@@ -256,6 +260,7 @@ Examples using raylib audio functionality, including sound/music loading and pla
256260
| [audio_stream_effects](audio/audio_stream_effects.c) | <img src="audio/audio_stream_effects.png" alt="audio_stream_effects" width="80"> | ⭐⭐⭐⭐️ | 4.2 | 5.0 | [Ramon Santamaria](https://github.com/raysan5) |
257261
| [audio_sound_multi](audio/audio_sound_multi.c) | <img src="audio/audio_sound_multi.png" alt="audio_sound_multi" width="80"> | ⭐⭐☆☆ | 5.0 | 5.0 | [Jeffery Myers](https://github.com/JeffM2501) |
258262
| [audio_sound_positioning](audio/audio_sound_positioning.c) | <img src="audio/audio_sound_positioning.png" alt="audio_sound_positioning" width="80"> | ⭐⭐☆☆ | 5.5 | 5.5 | [Le Juez Victor](https://github.com/Bigfoot71) |
263+
| [audio_fft_spectrum_visualizer](audio/audio_fft_spectrum_visualizer.c) | <img src="audio/audio_fft_spectrum_visualizer.png" alt="audio_fft_spectrum_visualizer" width="80"> | ⭐⭐⭐☆ | 6.0 | 5.6-dev | [IANN](https://github.com/meisei4) |
259264

260265
### category: others [6]
261266

examples/audio/audio_fft_spectrum_visualizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Example complexity rating: [★★★☆] 3/4
66
*
7-
* Example originally created with raylib 6.0
7+
* Example originally created with raylib 6.0, last time updated with raylib 5.6-dev
88
*
99
* Inspired by Inigo Quilez's https://www.shadertoy.com/
1010
* Resources/specification: https://gist.github.com/soulthreads/2efe50da4be1fb5f7ab60ff14ca434b8

examples/core/core_3d_camera_fps.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
*
77
* Example originally created with raylib 5.5, last time updated with raylib 5.5
88
*
9-
* Example contributed by Agnis Aldins (@nezvers) and reviewed by Ramon Santamaria (@raysan5)
9+
* Example contributed by Agnis Aldiņš (@nezvers) and reviewed by Ramon Santamaria (@raysan5)
1010
*
1111
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
1212
* BSD-like license that allows static linking with closed source software
1313
*
14-
* Copyright (c) 2025 Agnis Aldins (@nezvers)
14+
* Copyright (c) 2025 Agnis Aldiņš (@nezvers)
1515
*
1616
********************************************************************************************/
1717

examples/core/core_viewport_scaling.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
*
77
* Example originally created with raylib 5.5, last time updated with raylib 5.5
88
*
9-
* Example contributed by Agnis Aldins (@nezvers) and reviewed by Ramon Santamaria (@raysan5)
9+
* Example contributed by Agnis Aldiņš (@nezvers) and reviewed by Ramon Santamaria (@raysan5)
1010
*
1111
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
1212
* BSD-like license that allows static linking with closed source software
1313
*
14-
* Copyright (c) 2025 Agnis Aldins (@nezvers)
14+
* Copyright (c) 2025 Agnis Aldiņš (@nezvers)
1515
*
1616
********************************************************************************************/
1717

0 commit comments

Comments
 (0)