forked from googlesamples/vulkan-basic-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
68 lines (65 loc) · 1.95 KB
/
settings.gradle
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2016 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// configure path to the source code generated on your machine
[
'01-init_instance',
'02-enumerate_devices',
'03-init_device',
'04-init_command_buffer',
'05-init_swapchain',
'06-init_depth_buffer',
'07-init_uniform_buffer',
'08-init_pipeline_layout',
'09-init_descriptor_set',
'10-init_render_pass',
'11-init_shaders',
'12-init_frame_buffers',
'13-init_vertex_buffer',
'14-init_pipeline',
'15-draw_cube',
'16-vulkan_1_1',
'enumerate_devices_adv',
'init_texture',
'multithreaded_command_buffers',
'draw_textured_cube',
'dynamic_uniform',
'texel_buffer',
'events',
'instance_layer_properties',
'instance_extension_properties',
'instance_layer_extension_properties',
'create_debug_report_callback',
'enable_validation_with_callback',
'multiple_sets',
'copy_blit_image',
'template',
'separate_image_sampler',
'input_attachment',
'occlusion_query',
'pipeline_cache',
'pipeline_derivative',
'push_descriptors',
'immutable_sampler',
'push_constants',
'draw_subpasses',
'secondary_command_buffer',
'spirv_assembly',
'spirv_specialization',
'memory_barriers',
'validation_cache',
'vulkan_1_1_flexible'
].each {
include ":${it}"
project(":${it}").projectDir = new File("API-Samples/android/${it}")
}