├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile ├── README ├── bin └── .gitkeep ├── lib └── .gitkeep ├── procedures ├── constantvolume_procedure │ ├── Makefile │ └── constantvolume_procedure.cc ├── curve_generator_procedure │ ├── Makefile │ └── curve_generator_procedure.cc ├── pointcloud_generator │ ├── Makefile │ └── pointcloud_generator.cc ├── pointclouds_procedure │ ├── Makefile │ └── pointclouds_procedure.cc ├── splinewisps_procedure │ ├── Makefile │ └── splinewisps_procedure.cc ├── stanfordply_procedure │ ├── Makefile │ ├── ply.h │ ├── ply2mesh.cc │ ├── ply2mesh.h │ ├── plyfile.c │ └── stanfordply_procedure.cc ├── surfacewisps_procedure │ ├── Makefile │ └── surfacewisps_procedure.cc ├── velocity_generator_procedure │ ├── Makefile │ └── velocity_generator_procedure.cc └── wavefrontobj_procedure │ ├── Makefile │ ├── ObjBuffer.cc │ ├── ObjBuffer.h │ ├── ObjParser.cc │ ├── ObjParser.h │ └── wavefrontobj_procedure.cc ├── release_notes ├── v0.0.1.txt ├── v0.0.2.txt ├── v0.0.3.txt ├── v0.0.4.txt ├── v0.0.5.txt ├── v0.0.6.txt ├── v0.0.7.txt ├── v0.0.8.txt ├── v0.0.9.txt ├── v0.1.0.txt ├── v0.1.1.txt ├── v0.1.2.txt ├── v0.1.3.txt ├── v0.1.4.txt ├── v0.1.5.txt ├── v0.1.6.txt ├── v0.1.7.txt ├── v0.1.8.txt ├── v0.1.9.txt ├── v0.2.0.txt ├── v0.2.1.txt ├── v0.2.2.txt ├── v0.2.3.txt ├── v0.2.4.txt ├── v0.2.5.txt ├── v0.2.6.txt ├── v0.2.7.txt ├── v0.2.8.txt ├── v0.2.9.txt ├── v0.3.0.txt ├── v0.3.1.txt ├── v0.3.2.txt ├── v0.3.3.txt ├── v0.3.4.txt ├── v0.3.5.txt ├── v0.3.6.txt └── v0.3.7.txt ├── scenes ├── Makefile ├── bump_mapping.py ├── camera_motion_blur.py ├── cube.cc ├── cube.ply ├── dome_light1.py ├── dome_light2.py ├── furry_bunny.py ├── furry_bunny.scn ├── glassy_happy.py ├── grid_light.py ├── hair_velocity_blur.py ├── happy_buddhas.py ├── happy_buddhas.scn ├── mesh_velocity_blur.py ├── mis.py ├── pathtracing.py ├── point_cloud.py ├── pyro_ball.py ├── rungholt.py ├── sphere_light.py ├── spline_wisps.py ├── subsurface_scattering.py ├── surface_wisps.py ├── teapot.scn ├── teapot2.py ├── transform_motion_blur.py ├── velocity_attribute_blur.py ├── volume_and_bunny.py ├── xyzrgb_dragon.py └── xyzrgb_dragon.scn ├── shaders ├── constant_shader │ ├── Makefile │ └── constant_shader.cc ├── glass_shader │ ├── Makefile │ └── glass_shader.cc ├── hair_shader │ ├── Makefile │ └── hair_shader.cc ├── material_shader │ ├── Makefile │ └── material_shader.cc ├── pathtracing_shader │ ├── Makefile │ └── pathtracing_shader.cc ├── plastic_shader │ ├── Makefile │ └── plastic_shader.cc ├── sss_shader │ ├── Makefile │ └── sss_shader.cc └── volume_shader │ ├── Makefile │ └── volume_shader.cc ├── src ├── Makefile ├── fj_accelerator.cc ├── fj_accelerator.h ├── fj_adaptive_grid_sampler.cc ├── fj_adaptive_grid_sampler.h ├── fj_box.cc ├── fj_box.h ├── fj_bvh_accelerator.cc ├── fj_bvh_accelerator.h ├── fj_callback.cc ├── fj_callback.h ├── fj_camera.cc ├── fj_camera.h ├── fj_color.h ├── fj_compatibility.h ├── fj_curve.cc ├── fj_curve.h ├── fj_dome_light.cc ├── fj_dome_light.h ├── fj_filter.cc ├── fj_filter.h ├── fj_fixed_grid_sampler.cc ├── fj_fixed_grid_sampler.h ├── fj_framebuffer.cc ├── fj_framebuffer.h ├── fj_framebuffer_io.cc ├── fj_framebuffer_io.h ├── fj_geo_io.cc ├── fj_geo_io.h ├── fj_geometry.cc ├── fj_geometry.h ├── fj_geometry_io.cc ├── fj_geometry_io.h ├── fj_grid_accelerator.cc ├── fj_grid_accelerator.h ├── fj_importance_sampling.cc ├── fj_importance_sampling.h ├── fj_intersection.h ├── fj_interval.cc ├── fj_interval.h ├── fj_light.cc ├── fj_light.h ├── fj_matrix.cc ├── fj_matrix.h ├── fj_mesh.cc ├── fj_mesh.h ├── fj_mipmap.cc ├── fj_mipmap.h ├── fj_multi_thread.cc ├── fj_multi_thread.h ├── fj_noise.cc ├── fj_noise.h ├── fj_numeric.h ├── fj_object_group.cc ├── fj_object_group.h ├── fj_object_instance.cc ├── fj_object_instance.h ├── fj_object_set.cc ├── fj_object_set.h ├── fj_os.cc ├── fj_os.h ├── fj_pixel_sample.h ├── fj_plugin.cc ├── fj_plugin.h ├── fj_point_cloud.cc ├── fj_point_cloud.h ├── fj_point_light.cc ├── fj_point_light.h ├── fj_primitive_set.cc ├── fj_primitive_set.h ├── fj_procedure.cc ├── fj_procedure.h ├── fj_progress.cc ├── fj_progress.h ├── fj_property.cc ├── fj_property.h ├── fj_protocol.cc ├── fj_protocol.h ├── fj_pto.h ├── fj_random.cc ├── fj_random.h ├── fj_ray.h ├── fj_rectangle.cc ├── fj_rectangle.h ├── fj_rectangle_light.cc ├── fj_rectangle_light.h ├── fj_renderer.cc ├── fj_renderer.h ├── fj_sampler.cc ├── fj_sampler.h ├── fj_scene.cc ├── fj_scene.h ├── fj_scene_interface.cc ├── fj_scene_interface.h ├── fj_scene_node.cc ├── fj_scene_node.h ├── fj_serialize.h ├── fj_shader.cc ├── fj_shader.h ├── fj_shading.cc ├── fj_shading.h ├── fj_socket.cc ├── fj_socket.h ├── fj_sphere_light.cc ├── fj_sphere_light.h ├── fj_tex_coord.h ├── fj_texture.cc ├── fj_texture.h ├── fj_tiler.cc ├── fj_tiler.h ├── fj_timer.cc ├── fj_timer.h ├── fj_transform.cc ├── fj_transform.h ├── fj_triangle.cc ├── fj_triangle.h ├── fj_turbulence.cc ├── fj_turbulence.h ├── fj_types.h ├── fj_vector.h ├── fj_vertex_attribute.h ├── fj_volume.cc ├── fj_volume.h ├── fj_volume_accelerator.cc ├── fj_volume_accelerator.h ├── fj_volume_filling.cc ├── fj_volume_filling.h └── internal │ ├── fj_os_mac.cc │ ├── fj_os_unix.cc │ ├── fj_os_win.cc │ └── fj_property_list_include.cc ├── tests ├── Makefile ├── box_test.cc ├── generate_all_data.py ├── geo_io_test.cc ├── numeric_test.cc ├── run_all_scenes.py ├── unit_test.cc ├── unit_test.h └── vector_test.cc ├── tools ├── fb2exr │ ├── Makefile │ └── fb2exr.cc ├── framebuffer_viewer │ ├── Makefile │ ├── compatible_opengl.h │ ├── fbview.cc │ ├── framebuffer_viewer.cc │ ├── framebuffer_viewer.h │ ├── image_card.cc │ ├── image_card.h │ ├── load_images.cc │ ├── load_images.h │ ├── shader_program.cc │ └── shader_program.h ├── hdr2mip │ ├── Makefile │ ├── hdr2mip.cc │ ├── rgbe.c │ └── rgbe.h ├── jpg2mip │ ├── Makefile │ └── jpg2mip.cc ├── python_api │ ├── Makefile │ ├── fujiyama.py │ └── wavefrontobj.py └── scene_parser │ ├── Makefile │ ├── command.cc │ ├── command.h │ ├── main.cc │ ├── parser.cc │ └── parser.h └── visual_studio └── nmake ├── Makefile ├── README.txt ├── SETUP.bat ├── bin └── .gitkeep ├── make_nmakefile.py ├── make_windist.py ├── nmake_build.bat ├── nmake_clean.bat ├── nmake_interactive.bat ├── nmake_windist.bat ├── setupenv_bin.bat ├── setupenv_fujiyama.bat ├── setupenv_python.bat └── setupenv_vs.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/README -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /procedures/constantvolume_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/constantvolume_procedure/Makefile -------------------------------------------------------------------------------- /procedures/constantvolume_procedure/constantvolume_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/constantvolume_procedure/constantvolume_procedure.cc -------------------------------------------------------------------------------- /procedures/curve_generator_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/curve_generator_procedure/Makefile -------------------------------------------------------------------------------- /procedures/curve_generator_procedure/curve_generator_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/curve_generator_procedure/curve_generator_procedure.cc -------------------------------------------------------------------------------- /procedures/pointcloud_generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/pointcloud_generator/Makefile -------------------------------------------------------------------------------- /procedures/pointcloud_generator/pointcloud_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/pointcloud_generator/pointcloud_generator.cc -------------------------------------------------------------------------------- /procedures/pointclouds_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/pointclouds_procedure/Makefile -------------------------------------------------------------------------------- /procedures/pointclouds_procedure/pointclouds_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/pointclouds_procedure/pointclouds_procedure.cc -------------------------------------------------------------------------------- /procedures/splinewisps_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/splinewisps_procedure/Makefile -------------------------------------------------------------------------------- /procedures/splinewisps_procedure/splinewisps_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/splinewisps_procedure/splinewisps_procedure.cc -------------------------------------------------------------------------------- /procedures/stanfordply_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/stanfordply_procedure/Makefile -------------------------------------------------------------------------------- /procedures/stanfordply_procedure/ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/stanfordply_procedure/ply.h -------------------------------------------------------------------------------- /procedures/stanfordply_procedure/ply2mesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/stanfordply_procedure/ply2mesh.cc -------------------------------------------------------------------------------- /procedures/stanfordply_procedure/ply2mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/stanfordply_procedure/ply2mesh.h -------------------------------------------------------------------------------- /procedures/stanfordply_procedure/plyfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/stanfordply_procedure/plyfile.c -------------------------------------------------------------------------------- /procedures/stanfordply_procedure/stanfordply_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/stanfordply_procedure/stanfordply_procedure.cc -------------------------------------------------------------------------------- /procedures/surfacewisps_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/surfacewisps_procedure/Makefile -------------------------------------------------------------------------------- /procedures/surfacewisps_procedure/surfacewisps_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/surfacewisps_procedure/surfacewisps_procedure.cc -------------------------------------------------------------------------------- /procedures/velocity_generator_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/velocity_generator_procedure/Makefile -------------------------------------------------------------------------------- /procedures/velocity_generator_procedure/velocity_generator_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/velocity_generator_procedure/velocity_generator_procedure.cc -------------------------------------------------------------------------------- /procedures/wavefrontobj_procedure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/wavefrontobj_procedure/Makefile -------------------------------------------------------------------------------- /procedures/wavefrontobj_procedure/ObjBuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/wavefrontobj_procedure/ObjBuffer.cc -------------------------------------------------------------------------------- /procedures/wavefrontobj_procedure/ObjBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/wavefrontobj_procedure/ObjBuffer.h -------------------------------------------------------------------------------- /procedures/wavefrontobj_procedure/ObjParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/wavefrontobj_procedure/ObjParser.cc -------------------------------------------------------------------------------- /procedures/wavefrontobj_procedure/ObjParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/wavefrontobj_procedure/ObjParser.h -------------------------------------------------------------------------------- /procedures/wavefrontobj_procedure/wavefrontobj_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/procedures/wavefrontobj_procedure/wavefrontobj_procedure.cc -------------------------------------------------------------------------------- /release_notes/v0.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.1.txt -------------------------------------------------------------------------------- /release_notes/v0.0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.2.txt -------------------------------------------------------------------------------- /release_notes/v0.0.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.3.txt -------------------------------------------------------------------------------- /release_notes/v0.0.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.4.txt -------------------------------------------------------------------------------- /release_notes/v0.0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.5.txt -------------------------------------------------------------------------------- /release_notes/v0.0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.6.txt -------------------------------------------------------------------------------- /release_notes/v0.0.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.7.txt -------------------------------------------------------------------------------- /release_notes/v0.0.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.8.txt -------------------------------------------------------------------------------- /release_notes/v0.0.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.0.9.txt -------------------------------------------------------------------------------- /release_notes/v0.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.0.txt -------------------------------------------------------------------------------- /release_notes/v0.1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.1.txt -------------------------------------------------------------------------------- /release_notes/v0.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.2.txt -------------------------------------------------------------------------------- /release_notes/v0.1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.3.txt -------------------------------------------------------------------------------- /release_notes/v0.1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.4.txt -------------------------------------------------------------------------------- /release_notes/v0.1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.5.txt -------------------------------------------------------------------------------- /release_notes/v0.1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.6.txt -------------------------------------------------------------------------------- /release_notes/v0.1.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.7.txt -------------------------------------------------------------------------------- /release_notes/v0.1.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.8.txt -------------------------------------------------------------------------------- /release_notes/v0.1.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.1.9.txt -------------------------------------------------------------------------------- /release_notes/v0.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.0.txt -------------------------------------------------------------------------------- /release_notes/v0.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.1.txt -------------------------------------------------------------------------------- /release_notes/v0.2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.2.txt -------------------------------------------------------------------------------- /release_notes/v0.2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.3.txt -------------------------------------------------------------------------------- /release_notes/v0.2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.4.txt -------------------------------------------------------------------------------- /release_notes/v0.2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.5.txt -------------------------------------------------------------------------------- /release_notes/v0.2.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.6.txt -------------------------------------------------------------------------------- /release_notes/v0.2.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.7.txt -------------------------------------------------------------------------------- /release_notes/v0.2.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.8.txt -------------------------------------------------------------------------------- /release_notes/v0.2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.2.9.txt -------------------------------------------------------------------------------- /release_notes/v0.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.0.txt -------------------------------------------------------------------------------- /release_notes/v0.3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.1.txt -------------------------------------------------------------------------------- /release_notes/v0.3.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.2.txt -------------------------------------------------------------------------------- /release_notes/v0.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.3.txt -------------------------------------------------------------------------------- /release_notes/v0.3.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.4.txt -------------------------------------------------------------------------------- /release_notes/v0.3.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.5.txt -------------------------------------------------------------------------------- /release_notes/v0.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.6.txt -------------------------------------------------------------------------------- /release_notes/v0.3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/release_notes/v0.3.7.txt -------------------------------------------------------------------------------- /scenes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/Makefile -------------------------------------------------------------------------------- /scenes/bump_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/bump_mapping.py -------------------------------------------------------------------------------- /scenes/camera_motion_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/camera_motion_blur.py -------------------------------------------------------------------------------- /scenes/cube.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/cube.cc -------------------------------------------------------------------------------- /scenes/cube.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/cube.ply -------------------------------------------------------------------------------- /scenes/dome_light1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/dome_light1.py -------------------------------------------------------------------------------- /scenes/dome_light2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/dome_light2.py -------------------------------------------------------------------------------- /scenes/furry_bunny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/furry_bunny.py -------------------------------------------------------------------------------- /scenes/furry_bunny.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/furry_bunny.scn -------------------------------------------------------------------------------- /scenes/glassy_happy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/glassy_happy.py -------------------------------------------------------------------------------- /scenes/grid_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/grid_light.py -------------------------------------------------------------------------------- /scenes/hair_velocity_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/hair_velocity_blur.py -------------------------------------------------------------------------------- /scenes/happy_buddhas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/happy_buddhas.py -------------------------------------------------------------------------------- /scenes/happy_buddhas.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/happy_buddhas.scn -------------------------------------------------------------------------------- /scenes/mesh_velocity_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/mesh_velocity_blur.py -------------------------------------------------------------------------------- /scenes/mis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/mis.py -------------------------------------------------------------------------------- /scenes/pathtracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/pathtracing.py -------------------------------------------------------------------------------- /scenes/point_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/point_cloud.py -------------------------------------------------------------------------------- /scenes/pyro_ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/pyro_ball.py -------------------------------------------------------------------------------- /scenes/rungholt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/rungholt.py -------------------------------------------------------------------------------- /scenes/sphere_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/sphere_light.py -------------------------------------------------------------------------------- /scenes/spline_wisps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/spline_wisps.py -------------------------------------------------------------------------------- /scenes/subsurface_scattering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/subsurface_scattering.py -------------------------------------------------------------------------------- /scenes/surface_wisps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/surface_wisps.py -------------------------------------------------------------------------------- /scenes/teapot.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/teapot.scn -------------------------------------------------------------------------------- /scenes/teapot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/teapot2.py -------------------------------------------------------------------------------- /scenes/transform_motion_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/transform_motion_blur.py -------------------------------------------------------------------------------- /scenes/velocity_attribute_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/velocity_attribute_blur.py -------------------------------------------------------------------------------- /scenes/volume_and_bunny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/volume_and_bunny.py -------------------------------------------------------------------------------- /scenes/xyzrgb_dragon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/xyzrgb_dragon.py -------------------------------------------------------------------------------- /scenes/xyzrgb_dragon.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/scenes/xyzrgb_dragon.scn -------------------------------------------------------------------------------- /shaders/constant_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/constant_shader/Makefile -------------------------------------------------------------------------------- /shaders/constant_shader/constant_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/constant_shader/constant_shader.cc -------------------------------------------------------------------------------- /shaders/glass_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/glass_shader/Makefile -------------------------------------------------------------------------------- /shaders/glass_shader/glass_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/glass_shader/glass_shader.cc -------------------------------------------------------------------------------- /shaders/hair_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/hair_shader/Makefile -------------------------------------------------------------------------------- /shaders/hair_shader/hair_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/hair_shader/hair_shader.cc -------------------------------------------------------------------------------- /shaders/material_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/material_shader/Makefile -------------------------------------------------------------------------------- /shaders/material_shader/material_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/material_shader/material_shader.cc -------------------------------------------------------------------------------- /shaders/pathtracing_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/pathtracing_shader/Makefile -------------------------------------------------------------------------------- /shaders/pathtracing_shader/pathtracing_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/pathtracing_shader/pathtracing_shader.cc -------------------------------------------------------------------------------- /shaders/plastic_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/plastic_shader/Makefile -------------------------------------------------------------------------------- /shaders/plastic_shader/plastic_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/plastic_shader/plastic_shader.cc -------------------------------------------------------------------------------- /shaders/sss_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/sss_shader/Makefile -------------------------------------------------------------------------------- /shaders/sss_shader/sss_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/sss_shader/sss_shader.cc -------------------------------------------------------------------------------- /shaders/volume_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/volume_shader/Makefile -------------------------------------------------------------------------------- /shaders/volume_shader/volume_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/shaders/volume_shader/volume_shader.cc -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/fj_accelerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_accelerator.cc -------------------------------------------------------------------------------- /src/fj_accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_accelerator.h -------------------------------------------------------------------------------- /src/fj_adaptive_grid_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_adaptive_grid_sampler.cc -------------------------------------------------------------------------------- /src/fj_adaptive_grid_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_adaptive_grid_sampler.h -------------------------------------------------------------------------------- /src/fj_box.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_box.cc -------------------------------------------------------------------------------- /src/fj_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_box.h -------------------------------------------------------------------------------- /src/fj_bvh_accelerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_bvh_accelerator.cc -------------------------------------------------------------------------------- /src/fj_bvh_accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_bvh_accelerator.h -------------------------------------------------------------------------------- /src/fj_callback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_callback.cc -------------------------------------------------------------------------------- /src/fj_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_callback.h -------------------------------------------------------------------------------- /src/fj_camera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_camera.cc -------------------------------------------------------------------------------- /src/fj_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_camera.h -------------------------------------------------------------------------------- /src/fj_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_color.h -------------------------------------------------------------------------------- /src/fj_compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_compatibility.h -------------------------------------------------------------------------------- /src/fj_curve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_curve.cc -------------------------------------------------------------------------------- /src/fj_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_curve.h -------------------------------------------------------------------------------- /src/fj_dome_light.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_dome_light.cc -------------------------------------------------------------------------------- /src/fj_dome_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_dome_light.h -------------------------------------------------------------------------------- /src/fj_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_filter.cc -------------------------------------------------------------------------------- /src/fj_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_filter.h -------------------------------------------------------------------------------- /src/fj_fixed_grid_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_fixed_grid_sampler.cc -------------------------------------------------------------------------------- /src/fj_fixed_grid_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_fixed_grid_sampler.h -------------------------------------------------------------------------------- /src/fj_framebuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_framebuffer.cc -------------------------------------------------------------------------------- /src/fj_framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_framebuffer.h -------------------------------------------------------------------------------- /src/fj_framebuffer_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_framebuffer_io.cc -------------------------------------------------------------------------------- /src/fj_framebuffer_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_framebuffer_io.h -------------------------------------------------------------------------------- /src/fj_geo_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_geo_io.cc -------------------------------------------------------------------------------- /src/fj_geo_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_geo_io.h -------------------------------------------------------------------------------- /src/fj_geometry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_geometry.cc -------------------------------------------------------------------------------- /src/fj_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_geometry.h -------------------------------------------------------------------------------- /src/fj_geometry_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_geometry_io.cc -------------------------------------------------------------------------------- /src/fj_geometry_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_geometry_io.h -------------------------------------------------------------------------------- /src/fj_grid_accelerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_grid_accelerator.cc -------------------------------------------------------------------------------- /src/fj_grid_accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_grid_accelerator.h -------------------------------------------------------------------------------- /src/fj_importance_sampling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_importance_sampling.cc -------------------------------------------------------------------------------- /src/fj_importance_sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_importance_sampling.h -------------------------------------------------------------------------------- /src/fj_intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_intersection.h -------------------------------------------------------------------------------- /src/fj_interval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_interval.cc -------------------------------------------------------------------------------- /src/fj_interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_interval.h -------------------------------------------------------------------------------- /src/fj_light.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_light.cc -------------------------------------------------------------------------------- /src/fj_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_light.h -------------------------------------------------------------------------------- /src/fj_matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_matrix.cc -------------------------------------------------------------------------------- /src/fj_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_matrix.h -------------------------------------------------------------------------------- /src/fj_mesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_mesh.cc -------------------------------------------------------------------------------- /src/fj_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_mesh.h -------------------------------------------------------------------------------- /src/fj_mipmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_mipmap.cc -------------------------------------------------------------------------------- /src/fj_mipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_mipmap.h -------------------------------------------------------------------------------- /src/fj_multi_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_multi_thread.cc -------------------------------------------------------------------------------- /src/fj_multi_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_multi_thread.h -------------------------------------------------------------------------------- /src/fj_noise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_noise.cc -------------------------------------------------------------------------------- /src/fj_noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_noise.h -------------------------------------------------------------------------------- /src/fj_numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_numeric.h -------------------------------------------------------------------------------- /src/fj_object_group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_object_group.cc -------------------------------------------------------------------------------- /src/fj_object_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_object_group.h -------------------------------------------------------------------------------- /src/fj_object_instance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_object_instance.cc -------------------------------------------------------------------------------- /src/fj_object_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_object_instance.h -------------------------------------------------------------------------------- /src/fj_object_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_object_set.cc -------------------------------------------------------------------------------- /src/fj_object_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_object_set.h -------------------------------------------------------------------------------- /src/fj_os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_os.cc -------------------------------------------------------------------------------- /src/fj_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_os.h -------------------------------------------------------------------------------- /src/fj_pixel_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_pixel_sample.h -------------------------------------------------------------------------------- /src/fj_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_plugin.cc -------------------------------------------------------------------------------- /src/fj_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_plugin.h -------------------------------------------------------------------------------- /src/fj_point_cloud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_point_cloud.cc -------------------------------------------------------------------------------- /src/fj_point_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_point_cloud.h -------------------------------------------------------------------------------- /src/fj_point_light.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_point_light.cc -------------------------------------------------------------------------------- /src/fj_point_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_point_light.h -------------------------------------------------------------------------------- /src/fj_primitive_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_primitive_set.cc -------------------------------------------------------------------------------- /src/fj_primitive_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_primitive_set.h -------------------------------------------------------------------------------- /src/fj_procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_procedure.cc -------------------------------------------------------------------------------- /src/fj_procedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_procedure.h -------------------------------------------------------------------------------- /src/fj_progress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_progress.cc -------------------------------------------------------------------------------- /src/fj_progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_progress.h -------------------------------------------------------------------------------- /src/fj_property.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_property.cc -------------------------------------------------------------------------------- /src/fj_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_property.h -------------------------------------------------------------------------------- /src/fj_protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_protocol.cc -------------------------------------------------------------------------------- /src/fj_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_protocol.h -------------------------------------------------------------------------------- /src/fj_pto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_pto.h -------------------------------------------------------------------------------- /src/fj_random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_random.cc -------------------------------------------------------------------------------- /src/fj_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_random.h -------------------------------------------------------------------------------- /src/fj_ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_ray.h -------------------------------------------------------------------------------- /src/fj_rectangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_rectangle.cc -------------------------------------------------------------------------------- /src/fj_rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_rectangle.h -------------------------------------------------------------------------------- /src/fj_rectangle_light.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_rectangle_light.cc -------------------------------------------------------------------------------- /src/fj_rectangle_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_rectangle_light.h -------------------------------------------------------------------------------- /src/fj_renderer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_renderer.cc -------------------------------------------------------------------------------- /src/fj_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_renderer.h -------------------------------------------------------------------------------- /src/fj_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_sampler.cc -------------------------------------------------------------------------------- /src/fj_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_sampler.h -------------------------------------------------------------------------------- /src/fj_scene.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_scene.cc -------------------------------------------------------------------------------- /src/fj_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_scene.h -------------------------------------------------------------------------------- /src/fj_scene_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_scene_interface.cc -------------------------------------------------------------------------------- /src/fj_scene_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_scene_interface.h -------------------------------------------------------------------------------- /src/fj_scene_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_scene_node.cc -------------------------------------------------------------------------------- /src/fj_scene_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_scene_node.h -------------------------------------------------------------------------------- /src/fj_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_serialize.h -------------------------------------------------------------------------------- /src/fj_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_shader.cc -------------------------------------------------------------------------------- /src/fj_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_shader.h -------------------------------------------------------------------------------- /src/fj_shading.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_shading.cc -------------------------------------------------------------------------------- /src/fj_shading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_shading.h -------------------------------------------------------------------------------- /src/fj_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_socket.cc -------------------------------------------------------------------------------- /src/fj_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_socket.h -------------------------------------------------------------------------------- /src/fj_sphere_light.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_sphere_light.cc -------------------------------------------------------------------------------- /src/fj_sphere_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_sphere_light.h -------------------------------------------------------------------------------- /src/fj_tex_coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_tex_coord.h -------------------------------------------------------------------------------- /src/fj_texture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_texture.cc -------------------------------------------------------------------------------- /src/fj_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_texture.h -------------------------------------------------------------------------------- /src/fj_tiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_tiler.cc -------------------------------------------------------------------------------- /src/fj_tiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_tiler.h -------------------------------------------------------------------------------- /src/fj_timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_timer.cc -------------------------------------------------------------------------------- /src/fj_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_timer.h -------------------------------------------------------------------------------- /src/fj_transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_transform.cc -------------------------------------------------------------------------------- /src/fj_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_transform.h -------------------------------------------------------------------------------- /src/fj_triangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_triangle.cc -------------------------------------------------------------------------------- /src/fj_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_triangle.h -------------------------------------------------------------------------------- /src/fj_turbulence.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_turbulence.cc -------------------------------------------------------------------------------- /src/fj_turbulence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_turbulence.h -------------------------------------------------------------------------------- /src/fj_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_types.h -------------------------------------------------------------------------------- /src/fj_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_vector.h -------------------------------------------------------------------------------- /src/fj_vertex_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_vertex_attribute.h -------------------------------------------------------------------------------- /src/fj_volume.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_volume.cc -------------------------------------------------------------------------------- /src/fj_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_volume.h -------------------------------------------------------------------------------- /src/fj_volume_accelerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_volume_accelerator.cc -------------------------------------------------------------------------------- /src/fj_volume_accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_volume_accelerator.h -------------------------------------------------------------------------------- /src/fj_volume_filling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_volume_filling.cc -------------------------------------------------------------------------------- /src/fj_volume_filling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/fj_volume_filling.h -------------------------------------------------------------------------------- /src/internal/fj_os_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/internal/fj_os_mac.cc -------------------------------------------------------------------------------- /src/internal/fj_os_unix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/internal/fj_os_unix.cc -------------------------------------------------------------------------------- /src/internal/fj_os_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/internal/fj_os_win.cc -------------------------------------------------------------------------------- /src/internal/fj_property_list_include.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/src/internal/fj_property_list_include.cc -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/box_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/box_test.cc -------------------------------------------------------------------------------- /tests/generate_all_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/generate_all_data.py -------------------------------------------------------------------------------- /tests/geo_io_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/geo_io_test.cc -------------------------------------------------------------------------------- /tests/numeric_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/numeric_test.cc -------------------------------------------------------------------------------- /tests/run_all_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/run_all_scenes.py -------------------------------------------------------------------------------- /tests/unit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/unit_test.cc -------------------------------------------------------------------------------- /tests/unit_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/unit_test.h -------------------------------------------------------------------------------- /tests/vector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tests/vector_test.cc -------------------------------------------------------------------------------- /tools/fb2exr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/fb2exr/Makefile -------------------------------------------------------------------------------- /tools/fb2exr/fb2exr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/fb2exr/fb2exr.cc -------------------------------------------------------------------------------- /tools/framebuffer_viewer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/Makefile -------------------------------------------------------------------------------- /tools/framebuffer_viewer/compatible_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/compatible_opengl.h -------------------------------------------------------------------------------- /tools/framebuffer_viewer/fbview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/fbview.cc -------------------------------------------------------------------------------- /tools/framebuffer_viewer/framebuffer_viewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/framebuffer_viewer.cc -------------------------------------------------------------------------------- /tools/framebuffer_viewer/framebuffer_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/framebuffer_viewer.h -------------------------------------------------------------------------------- /tools/framebuffer_viewer/image_card.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/image_card.cc -------------------------------------------------------------------------------- /tools/framebuffer_viewer/image_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/image_card.h -------------------------------------------------------------------------------- /tools/framebuffer_viewer/load_images.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/load_images.cc -------------------------------------------------------------------------------- /tools/framebuffer_viewer/load_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/load_images.h -------------------------------------------------------------------------------- /tools/framebuffer_viewer/shader_program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/shader_program.cc -------------------------------------------------------------------------------- /tools/framebuffer_viewer/shader_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/framebuffer_viewer/shader_program.h -------------------------------------------------------------------------------- /tools/hdr2mip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/hdr2mip/Makefile -------------------------------------------------------------------------------- /tools/hdr2mip/hdr2mip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/hdr2mip/hdr2mip.cc -------------------------------------------------------------------------------- /tools/hdr2mip/rgbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/hdr2mip/rgbe.c -------------------------------------------------------------------------------- /tools/hdr2mip/rgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/hdr2mip/rgbe.h -------------------------------------------------------------------------------- /tools/jpg2mip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/jpg2mip/Makefile -------------------------------------------------------------------------------- /tools/jpg2mip/jpg2mip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/jpg2mip/jpg2mip.cc -------------------------------------------------------------------------------- /tools/python_api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/python_api/Makefile -------------------------------------------------------------------------------- /tools/python_api/fujiyama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/python_api/fujiyama.py -------------------------------------------------------------------------------- /tools/python_api/wavefrontobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/python_api/wavefrontobj.py -------------------------------------------------------------------------------- /tools/scene_parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/scene_parser/Makefile -------------------------------------------------------------------------------- /tools/scene_parser/command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/scene_parser/command.cc -------------------------------------------------------------------------------- /tools/scene_parser/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/scene_parser/command.h -------------------------------------------------------------------------------- /tools/scene_parser/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/scene_parser/main.cc -------------------------------------------------------------------------------- /tools/scene_parser/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/scene_parser/parser.cc -------------------------------------------------------------------------------- /tools/scene_parser/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/tools/scene_parser/parser.h -------------------------------------------------------------------------------- /visual_studio/nmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/Makefile -------------------------------------------------------------------------------- /visual_studio/nmake/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/README.txt -------------------------------------------------------------------------------- /visual_studio/nmake/SETUP.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/SETUP.bat -------------------------------------------------------------------------------- /visual_studio/nmake/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /visual_studio/nmake/make_nmakefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/make_nmakefile.py -------------------------------------------------------------------------------- /visual_studio/nmake/make_windist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/make_windist.py -------------------------------------------------------------------------------- /visual_studio/nmake/nmake_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/nmake_build.bat -------------------------------------------------------------------------------- /visual_studio/nmake/nmake_clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/nmake_clean.bat -------------------------------------------------------------------------------- /visual_studio/nmake/nmake_interactive.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/nmake_interactive.bat -------------------------------------------------------------------------------- /visual_studio/nmake/nmake_windist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/nmake_windist.bat -------------------------------------------------------------------------------- /visual_studio/nmake/setupenv_bin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/setupenv_bin.bat -------------------------------------------------------------------------------- /visual_studio/nmake/setupenv_fujiyama.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/setupenv_fujiyama.bat -------------------------------------------------------------------------------- /visual_studio/nmake/setupenv_python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/setupenv_python.bat -------------------------------------------------------------------------------- /visual_studio/nmake/setupenv_vs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsubo164/Fujiyama-Renderer/HEAD/visual_studio/nmake/setupenv_vs.bat --------------------------------------------------------------------------------