lite_particles2d

This commit is contained in:
2022-04-14 19:25:30 +02:00
committed by Erik Scholz
parent 5f066faa28
commit 1ae43457ed
9 changed files with 1457 additions and 1 deletions

View File

@ -168,7 +168,6 @@ target_link_libraries(hdr_bloom_pipeline_example
opengl_renderer_s
organizer_scene
clear_render_task
blit_fb_render_task
simple_rect_render_task
#bloom_extraction_render_task
@ -187,3 +186,27 @@ target_link_libraries(hdr_bloom_pipeline_example
add_test(NAME hdr_bloom_pipeline_example COMMAND hdr_bloom_pipeline_example)
################# lite_particles2d (the test uses bloom)
add_executable(lite_particles2d_test ./lite_particles2d.cpp)
target_link_libraries(lite_particles2d_test
opengl_renderer_s
organizer_scene
clear_render_task
#simple_rect_render_task
lite_particles2d # not only rendertask
bloom
composition_render_task
#simple_velocity_system
#transform_system
random
gtest_main
)
add_test(NAME lite_particles2d_test COMMAND lite_particles2d_test)