Add copyright and licensing to .bat files missing them
Task-number: QTBUG-124453 Change-Id: I8bd48ab5d5b18197ef5bf9a46edf49da86374bee Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
parent
00a04dddaf
commit
251a632dc4
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
@echo off
|
||||
echo Hello
|
||||
echo Hello
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
@echo off
|
||||
echo Hello
|
||||
echo Hello
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
::
|
||||
:: The highest version of python that can be used is 3.11
|
||||
:: Download from here: https://www.python.org/downloads/release/python-3118/
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "310 es,430" --hlsl 50 --msl 12 buffer.comp -o buffer.comp.qsb
|
||||
qsb --glsl "310 es,430" --hlsl 50 --msl 12 main.vert -o main.vert.qsb
|
||||
qsb --glsl "310 es,430" --hlsl 50 --msl 12 main.frag -o main.frag.qsb
|
||||
|
@ -1 +1,3 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
||||
qsb --glsl "310 es,430" --hlsl 50 --msl 12 image.comp -o image.comp.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "100 es,120" --hlsl 50 --msl 12 -c cubemap.vert -o cubemap.vert.qsb
|
||||
qsb --glsl "100 es,120" --hlsl 50 --msl 12 -c cubemap.frag -o cubemap.frag.qsb
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "300 es,120" --hlsl 50 --msl 12 cubemap_oneface.vert -o cubemap_oneface.vert.qsb
|
||||
qsb --glsl "300 es,120" --hlsl 50 --msl 12 cubemap_oneface.frag -o cubemap_oneface.frag.qsb
|
||||
qsb --glsl "300 es,120" --hlsl 50 --msl 12 cubemap_mrt.vert -o cubemap_mrt.vert.qsb
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl 320es,410 --hlsl 50 --msl 12 --msltess material.vert -o material.vert.qsb
|
||||
qsb --glsl 320es,410 --hlsl 50 --msl 12 material.frag -o material.frag.qsb
|
||||
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "430,310 es" --hlsl 50 --msl 12 load.comp -o load.comp.qsb
|
||||
qsb --glsl "430,310 es" --hlsl 50 --msl 12 prefilter.comp -o prefilter.comp.qsb
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl 320es,410 --hlsl 50 test.vert -o test.vert.qsb
|
||||
qsb --glsl 320es,410 test.geom -o test.geom.qsb
|
||||
qsb -r hlsl,50,test_geom.hlsl test.geom.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --qt6 hdrtexture.vert -o hdrtexture.vert.qsb
|
||||
qsb --qt6 hdrtexture.frag -o hdrtexture.frag.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "330,300 es" --hlsl 50 --msl 12 inst.vert -o inst.vert.qsb
|
||||
qsb --glsl "330,300 es" --hlsl 50 --msl 12 inst.frag -o inst.frag.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "100 es,120" --hlsl 50 --msl 12 -c mrt.vert -o mrt.vert.qsb
|
||||
qsb --glsl "100 es,120" --hlsl 50 --msl 12 -c mrt.frag -o mrt.frag.qsb
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --view-count 2 --glsl "300 es,330" --hlsl 61 -c --msl 12 multiview.vert -o multiview.vert.qsb
|
||||
qsb --glsl "300 es,330" --hlsl 61 -c --msl 12 multiview.frag -o multiview.frag.qsb
|
||||
qsb --glsl "300 es,330" --hlsl 61 -c --msl 12 texture.vert -o texture.vert.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 material.vert -o material.vert.qsb
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 material.frag -o material.frag.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl 320es,410,120 test.vert --msl 12 --hlsl 50 -o test.vert.qsb
|
||||
qsb --glsl 320es,410,120 test.frag --msl 12 --hlsl 50 -o test.frag.qsb
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "120,300 es" --hlsl 50 --msl 12 -c shadowmap.vert -o shadowmap.vert.qsb
|
||||
qsb --glsl "120,300 es" --hlsl 50 --msl 12 -c shadowmap.frag -o shadowmap.frag.qsb
|
||||
qsb --glsl "120,300 es" --hlsl 50 --msl 12 -c main.vert -o main.vert.qsb
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 -c color.vert -o color.vert.qsb
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 -c color.frag -o color.frag.qsb
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 -c texture.vert -o texture.vert.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 -c imgui.vert -o imgui.vert.qsb
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 -c imgui.frag -o imgui.frag.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 material.vert -o material.vert.qsb
|
||||
qsb --glsl "100 es,120,150" --hlsl 50 --msl 12 material.frag -o material.frag.qsb
|
||||
|
@ -1,3 +1,5 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl 320es,410 --hlsl 50 --msl 12 --msltess test.vert -o test.vert.qsb
|
||||
qsb --glsl 320es,410 --msl 12 --tess-mode triangles test.tesc -o test.tesc.qsb
|
||||
qsb -r hlsl,50,test_hull.hlsl test.tesc.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "120,150,300 es" --hlsl 50 --msl 12 -c texture1d.vert -o texture1d.vert.qsb
|
||||
qsb --glsl "120,150,300 es" --hlsl 50 --msl 12 -c texture1d.frag -o texture1d.frag.qsb
|
||||
|
@ -1,2 +1,4 @@
|
||||
:: Copyright (C) 2024 The Qt Company Ltd.
|
||||
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
qsb --glsl "300 es,150" --hlsl 50 --msl 12 -c texture3d.vert -o texture3d.vert.qsb
|
||||
qsb --glsl "300 es,150" --hlsl 50 --msl 12 -c texture3d.frag -o texture3d.frag.qsb
|
||||
|
Loading…
x
Reference in New Issue
Block a user