mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-08 13:20:06 +00:00
Add missing copyright headers.
This commit is contained in:
parent
853e84e8bf
commit
2ceca64004
@ -1,3 +1,6 @@
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
# The style used for all options not specifically set in the configuration.
|
||||
BasedOnStyle: LLVM
|
||||
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
*.o
|
||||
*.d
|
||||
*.txt
|
||||
|
7
.reuse/dep5
Normal file
7
.reuse/dep5
Normal file
@ -0,0 +1,7 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: SPIRV-Cross
|
||||
Source: https://github.com/KhronosGroup/SPIRV-Cross
|
||||
|
||||
Files: shaders*/* reference/* tests-other/*
|
||||
Copyright: 2016-2021 The Khronos Group, Inc.
|
||||
License: Apache-2.0
|
@ -1,3 +1,6 @@
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
language:
|
||||
- cpp
|
||||
- python
|
||||
|
11
CODE_OF_CONDUCT.adoc
Normal file
11
CODE_OF_CONDUCT.adoc
Normal file
@ -0,0 +1,11 @@
|
||||
// Copyright (c) 2016-2020 The Khronos Group Inc.
|
||||
//
|
||||
// SPDX-License-Identifier: CC-BY-4.0
|
||||
|
||||
= Code of Conduct
|
||||
|
||||
A reminder that this issue tracker is managed by the Khronos Group.
|
||||
Interactions here should follow the
|
||||
https://www.khronos.org/developers/code-of-conduct[Khronos Code of Conduct],
|
||||
which prohibits aggressive or derogatory language. Please keep the
|
||||
discussion friendly and civil.
|
@ -1 +0,0 @@
|
||||
A reminder that this issue tracker is managed by the Khronos Group. Interactions here should follow the Khronos Code of Conduct (https://www.khronos.org/developers/code-of-conduct), which prohibits aggressive or derogatory language. Please keep the discussion friendly and civil.
|
3
Makefile
3
Makefile
@ -1,3 +1,6 @@
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
TARGET := spirv-cross
|
||||
|
||||
SOURCES := $(wildcard spirv_*.cpp)
|
||||
|
@ -1,3 +1,5 @@
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/bash
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
PROFILE=Release
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/bash
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
GLSLANG_REV=3de5cfe50edecd001e6d703555284d9b10b3dd57
|
||||
SPIRV_TOOLS_REV=f3ccb633dfd7c5de1f9f0a2d2e9d7a25f2478206
|
||||
|
@ -1,3 +1,6 @@
|
||||
// Copyright 2016-2021 The Khronos Group Inc.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
#ifndef SPIRV_CROSS_GIT_VERSION_H_
|
||||
#define SPIRV_CROSS_GIT_VERSION_H_
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/bash
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
#for file in spirv_*.{cpp,hpp} include/spirv_cross/*.{hpp,h} samples/cpp/*.cpp main.cpp
|
||||
for file in spirv_*.{cpp,hpp} main.cpp
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
SOURCES := $(wildcard *.comp)
|
||||
SPIRV := $(SOURCES:.comp=.spv)
|
||||
CPP_INTERFACE := $(SOURCES:.comp=.spv.cpp)
|
||||
|
@ -1,3 +1,6 @@
|
||||
// Copyright 2016-2021 The Khronos Group Inc.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
#version 310 es
|
||||
layout(local_size_x = 64) in;
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
// Copyright 2016-2021 The Khronos Group Inc.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
#version 310 es
|
||||
layout(local_size_x = 64) in;
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
// Copyright 2016-2021 The Khronos Group Inc.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
#version 310 es
|
||||
layout(local_size_x = 64) in;
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/bash
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
OPTS=$@
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/bash
|
||||
# Copyright 2016-2021 The Khronos Group Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
./test_shaders.sh --update
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user