blob: 153e662733b3f5f4dae8fd403ba2f86e2b56822a [file] [log] [blame]
Andrew Geisslerc182c622020-05-15 14:13:32 -05001From 663d51cd31fd98411e25f37aaf52b591d9639bf5 Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: "Maxin B. John" <maxin.john@intel.com>
3Date: Mon, 30 Jul 2018 17:23:29 +0300
Brad Bishopd7bf8c12018-02-25 22:55:05 -05004Subject: [PATCH] Don't build demos with questionably licensed data
5
6Some of the models don't have open source compatible licenses:
7don't build demos using those. Also don't build demos that need
8resources that are not included.
9
10ssao:
11scenerendering:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012 Sibenik model, no license found
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013
14deferred:
15deferredmultisampling:
16deferredshadows:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080017 armor model, CC-BY-3.0
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018
19vulkanscene:
20imgui:
21shadowmapping:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022 vulkanscene model, no license found
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023
24indirectdraw:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080025 plant model, no license found
Brad Bishopd7bf8c12018-02-25 22:55:05 -050026
27hdr:
28pbribl:
29pbrtexture:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080030 Require external Vulkan Asset Pack
Brad Bishopd7bf8c12018-02-25 22:55:05 -050031
32Upstream-Status: Inappropriate [configuration]
Brad Bishopd7bf8c12018-02-25 22:55:05 -050033
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080034Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
35Signed-off-by: Maxin B. John <maxin.john@intel.com>
36---
37 examples/CMakeLists.txt | 14 --------------
38 1 file changed, 14 deletions(-)
39
40diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
Andrew Geisslerc182c622020-05-15 14:13:32 -050041index a53c834..71a12e7 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080042--- a/examples/CMakeLists.txt
43+++ b/examples/CMakeLists.txt
Andrew Geisslerc182c622020-05-15 14:13:32 -050044@@ -55,9 +55,6 @@ set(EXAMPLES
Andrew Geissler82c905d2020-04-13 13:39:40 -050045 conditionalrender
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080046 conservativeraster
Brad Bishopd7bf8c12018-02-25 22:55:05 -050047 debugmarker
48- deferred
49- deferredmultisampling
50- deferredshadows
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080051 descriptorsets
Brad Bishopd7bf8c12018-02-25 22:55:05 -050052 displacement
53 distancefieldfonts
Andrew Geisslerc182c622020-05-15 14:13:32 -050054@@ -65,9 +62,6 @@ set(EXAMPLES
Brad Bishopd7bf8c12018-02-25 22:55:05 -050055 gears
56 geometryshader
Andrew Geisslerc182c622020-05-15 14:13:32 -050057 gltfscene
Brad Bishopd7bf8c12018-02-25 22:55:05 -050058- hdr
59- imgui
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080060- indirectdraw
Andrew Geissler82c905d2020-04-13 13:39:40 -050061 inlineuniformblocks
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080062 inputattachments
Brad Bishopd7bf8c12018-02-25 22:55:05 -050063 instancing
Andrew Geissler82c905d2020-04-13 13:39:40 -050064@@ -83,23 +77,16 @@ set(EXAMPLES
Brad Bishopd7bf8c12018-02-25 22:55:05 -050065 parallaxmapping
66 particlefire
67 pbrbasic
68- pbribl
69- pbrtexture
70 pipelines
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080071 pipelinestatistics
Brad Bishopd7bf8c12018-02-25 22:55:05 -050072 pushconstants
Andrew Geissler82c905d2020-04-13 13:39:40 -050073 pushdescriptors
Brad Bishopd7bf8c12018-02-25 22:55:05 -050074 radialblur
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080075 renderheadless
Brad Bishopd7bf8c12018-02-25 22:55:05 -050076- scenerendering
77 screenshot
78- shadowmapping
79- shadowmappingomni
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080080- shadowmappingcascade
Brad Bishopd7bf8c12018-02-25 22:55:05 -050081 skeletalanimation
82 specializationconstants
83 sphericalenvmapping
84- ssao
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080085 stencilbuffer
Brad Bishopd7bf8c12018-02-25 22:55:05 -050086 subpasses
87 terraintessellation
Andrew Geissler82c905d2020-04-13 13:39:40 -050088@@ -113,7 +100,6 @@ set(EXAMPLES
Brad Bishopd7bf8c12018-02-25 22:55:05 -050089 texturesparseresidency
90 triangle
91 viewportarray
92- vulkanscene
93 )
94
95 buildExamples()
Andrew Geisslerc182c622020-05-15 14:13:32 -050096--
972.17.1
98