REXM: ADDED: example: core_render_texture

This commit is contained in:
Ray
2025-09-10 18:26:43 +02:00
parent 84e2cbccc4
commit ffe74658ab
8 changed files with 705 additions and 3 deletions

View File

@ -526,6 +526,7 @@ CORE = \
core/core_input_virtual_controls \
core/core_random_sequence \
core/core_random_values \
core/core_render_texture \
core/core_scissor_test \
core/core_smooth_pixelperfect \
core/core_storage_values \
@ -761,6 +762,9 @@ core/core_random_sequence: core/core_random_sequence.c
core/core_random_values: core/core_random_values.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
core/core_render_texture: core/core_render_texture.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
core/core_scissor_test: core/core_scissor_test.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)