blob: ab4961a889777bce33dc0dbadac2be1dfec09a22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
include $(top_srcdir)/common.am
SUBDIRS = src src/spvshaders
EXTRA_DIST = m4/NOTES
ACLOCAL_AMFLAGS = -Im4 --install
assets_objs_DATA = \
assets/objs/suzanne.obj \
assets/objs/viking_room.obj
assets_textures_DATA = \
assets/textures/texture.jpg \
assets/textures/viking_room.png
EXTRA_DIST += $(assets_objs_DATA) $(assets_textures_DATA)
# assets origin:
# - assets/suzanne.obj
# taken from Blender
# - assets/texture.jpg
# comes from here https://pixabay.com/photos/statue-sculpture-figure-1275469/, modified by the
# author(s) of the vulkan tutorials (see
# https://docs.vulkan.org/tutorial/latest/06_Texture_mapping/00_Images.html#_loading_an_image)
# - assets/viking_room.obj & assets/textures/viking_room.png
# comes from here https://sketchfab.com/3d-models/viking-room-a49f1b8e4f5c4ecf9e1fe7d81915ad38,
# modified by the author(s) of the vulkan tutorials (see
# https://docs.vulkan.org/tutorial/latest/08_Loading_models.html#_sample_mesh)
|