Skip to content

Commit

Permalink
profiles: add contacts and contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Dec 8, 2021
1 parent ac9fcd5 commit d76621f
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 19 deletions.
5 changes: 3 additions & 2 deletions profiles/VP_ANDROID_angle_es31.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,10 @@
"api-version": "1.1.131",
"label": "Android Vulkan 1.1 ANGLE 2022 Profile",
"description": "ANGLE Layer Support for GLES 3.1",
"authors": [
"contacts": [
{
"Tobias Hector": "vantablack@google.com"
"name": "Trevor Black",
"email": "vantablack@google.com"
}
],
"capabilities": [
Expand Down
5 changes: 3 additions & 2 deletions profiles/VP_ANDROID_baseline_2022.json
Original file line number Diff line number Diff line change
Expand Up @@ -1315,9 +1315,10 @@
"api-version": "1.0.68",
"label": "Android Vulkan 1.0 baseline 2022 profile",
"description": "Collection on features supported in the majority of devices",
"authors": [
"contacts": [
{
"Tobias Hector": "vantablack@google.com"
"name": "Trevor Black",
"email": "vantablack@google.com"
}
],
"capabilities": [
Expand Down
5 changes: 3 additions & 2 deletions profiles/VP_KHR_roadmap_2022.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,10 @@
"api-version": "1.3.201",
"label": "Khronos Vulkan roadmap 2022 profile",
"description": "This roadmap profile is intended to be supported by newer devices shipping in 2022 across mainstream smartphone, tablet, laptops, console and desktop devices.",
"authors": [
"contacts": [
{
"Tobias Hector": "tobias.hector@amd.com"
"name": "Tobias Hector",
"email": "tobias.hector@amd.com"
}
],
"capabilities": [
Expand Down
12 changes: 8 additions & 4 deletions profiles/VP_LUNARG_desktop_portability_2021.json
Original file line number Diff line number Diff line change
Expand Up @@ -1143,9 +1143,11 @@
"api-version": "1.1.142",
"label": "LunarG Vulkan desktop portability 2021 subset profile",
"description": "Common desktop platforms with drivers supporting Vulkan 1.1 on macOS.",
"authors": [
"contacts": [
{
"Christophe Riccio": "christophe@lunarg.com"
"name": "Christophe Riccio",
"email": "christophe@lunarg.com",
"github": "christophe-lunarg"
}
],
"capabilities": [
Expand All @@ -1161,9 +1163,11 @@
"api-version": "1.1.142",
"label": "LunarG Vulkan desktop portability 2021 profile",
"description": "Common desktop platforms with drivers supporting Vulkan 1.1 on Windows and Linux.",
"authors": [
"contacts": [
{
"Christophe Riccio": "christophe@lunarg.com"
"name": "Christophe Riccio",
"email": "christophe@lunarg.com",
"github": "christophe-lunarg"
}
],
"capabilities": [
Expand Down
6 changes: 4 additions & 2 deletions profiles/test/data/VP_LUNARG_test_vkformatproperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,11 @@
"api-version": "1.2.198",
"label": "LunarG VkFormatProperties unit tests",
"description": "LunarG VkFormatProperties unit tests",
"authors": [
"contacts": [
{
"Christophe Riccio": "christophe@lunarg.com"
"name": "Christophe Riccio",
"email": "christophe@lunarg.com",
"github": "christophe-lunarg"
}
],
"capabilities": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,11 @@
"api-version": "1.2.198",
"label": "LunarG VkPhysicalDeviceMemoryProperties unit tests",
"description": "LunarG VkPhysicalDeviceMemoryProperties unit tests",
"authors": [
"contacts": [
{
"Christophe Riccio": "christophe@lunarg.com"
"name": "Christophe Riccio",
"email": "christophe@lunarg.com",
"github": "christophe-lunarg"
}
],
"capabilities": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,11 @@
"api-version": "1.2.198",
"label": "LunarG VkQueueFamilyProperties unit tests",
"description": "LunarG VkQueueFamilyProperties unit tests",
"authors": [
"contacts": [
{
"Christophe Riccio": "christophe@lunarg.com"
"name": "Christophe Riccio",
"email": "christophe@lunarg.com",
"github": "christophe-lunarg"
}
],
"capabilities": [
Expand Down
32 changes: 29 additions & 3 deletions schema/profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,25 @@
"type": "string",
"enum": [ "ALPHA", "BETA", "STABLE", "DEPRECATED" ]
},
"contact": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"email"
],
"properties": {
"name": { "type": "string" },
"email": {
"type": "string",
"pattern": "^[A-Za-z0-9_.]+@[a-zA-Z0-9-].[a-zA-Z0-9-.]+$"
},
"github": {
"type": "string",
"pattern": "^[A-Za-z0-9_-]+$"
}
}
},
"uint8_t": {
"type": "integer",
"minimum": 0,
Expand Down Expand Up @@ -6242,7 +6261,7 @@
"description",
"version",
"api-version",
"authors",
"contacts",
"capabilities"
],
"properties": {
Expand Down Expand Up @@ -6271,11 +6290,18 @@
"type": "string",
"pattern": "^[0-9]+.[0-9]+.[0-9]+$"
},
"authors": {
"contacts": {
"description": "TODO",
"type": "array",
"items": {
"$ref": "#/definitions/contact"
}
},
"contributors": {
"description": "TODO",
"type": "array",
"items": {
"type": "object"
"$ref": "#/definitions/contact"
}
},
"capabilities": {
Expand Down

0 comments on commit d76621f

Please sign in to comment.