blob: 76240610f58f3204699a76da4c6a9a257100881f [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001From 0cbf9c9831f773e0da66209be9a6ff28d57c2321 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>
Andrew Geissler82c905d2020-04-13 13:39:40 -050036
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080037---
38 examples/CMakeLists.txt | 14 --------------
39 1 file changed, 14 deletions(-)
40
41diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
Andrew Geissler82c905d2020-04-13 13:39:40 -050042index e07918c..08b6e23 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080043--- a/examples/CMakeLists.txt
44+++ b/examples/CMakeLists.txt
Andrew Geissler82c905d2020-04-13 13:39:40 -050045@@ -55,18 +55,12 @@ set(EXAMPLES
46 conditionalrender
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080047 conservativeraster
Brad Bishopd7bf8c12018-02-25 22:55:05 -050048 debugmarker
49- deferred
50- deferredmultisampling
51- deferredshadows
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080052 descriptorsets
Brad Bishopd7bf8c12018-02-25 22:55:05 -050053 displacement
54 distancefieldfonts
55 dynamicuniformbuffer
56 gears
57 geometryshader
58- 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()