]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
93bcfbf851337115918680db44ee3f56457712be
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From 0a27144d43b70121f57f6036514d069ca9d2b971 Mon Sep 17 00:00:00 2001
2 From: "Maxin B. John" <maxin.john@intel.com>
3 Date: Mon, 30 Jul 2018 17:23:29 +0300
4 Subject: [PATCH] Don't build demos with questionably licensed data
5
6 Some of the models don't have open source compatible licenses:
7 don't build demos using those. Also don't build demos that need
8 resources that are not included.
9
10 ssao:
11 scenerendering:
12 Sibenik model, no license found
13
14 deferred:
15 deferredmultisampling:
16 deferredshadows:
17 armor model, CC-BY-3.0
18
19 vulkanscene:
20 imgui:
21 shadowmapping:
22 vulkanscene model, no license found
23
24 indirectdraw:
25 plant model, no license found
26
27 hdr:
28 pbribl:
29 pbrtexture:
30 Require external Vulkan Asset Pack
31
32 Upstream-Status: Inappropriate [configuration]
33
34 Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
35 Signed-off-by: Maxin B. John <maxin.john@intel.com>
36 ---
37 examples/CMakeLists.txt | 14 --------------
38 1 file changed, 14 deletions(-)
39
40 diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
41 index 8eee3a4..698d3b3 100644
42 --- a/examples/CMakeLists.txt
43 +++ b/examples/CMakeLists.txt
44 @@ -47,18 +47,12 @@ set(EXAMPLES
45 computeshader
46 conservativeraster
47 debugmarker
48 - deferred
49 - deferredmultisampling
50 - deferredshadows
51 descriptorsets
52 displacement
53 distancefieldfonts
54 dynamicuniformbuffer
55 gears
56 geometryshader
57 - hdr
58 - imgui
59 - indirectdraw
60 inputattachments
61 instancing
62 mesh
63 @@ -70,8 +64,6 @@ set(EXAMPLES
64 parallaxmapping
65 particlefire
66 pbrbasic
67 - pbribl
68 - pbrtexture
69 pipelines
70 pipelinestatistics
71 pushconstants
72 @@ -79,15 +71,10 @@ set(EXAMPLES
73 radialblur
74 raytracing
75 renderheadless
76 - scenerendering
77 screenshot
78 - shadowmapping
79 - shadowmappingomni
80 - shadowmappingcascade
81 skeletalanimation
82 specializationconstants
83 sphericalenvmapping
84 - ssao
85 stencilbuffer
86 subpasses
87 terraintessellation
88 @@ -101,7 +88,6 @@ set(EXAMPLES
89 texturesparseresidency
90 triangle
91 viewportarray
92 - vulkanscene
93 )
94
95 buildExamples()
96 --
97 2.4.0
98