forked from KhronosGroup/ANARI-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
khr_area_lights.json
114 lines (112 loc) · 3.65 KB
/
khr_area_lights.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"info" : {
"name" : "KHR_AREA_LIGHTS",
"type" : "extension",
"dependencies" : [
"khr_light_directional",
"khr_light_point",
"khr_light_ring",
"khr_light_quad",
"khr_light_hdri"
]
},
"objects" : [
{
"type" : "ANARI_LIGHT",
"name" : "directional",
"parameters" : [
{
"name" : "angularDiameter",
"types" : ["ANARI_FLOAT32"],
"tags" : [],
"default" : 0.0,
"description" : "apparent size of the light in radians"
}, {
"name" : "radiance",
"types" : ["ANARI_FLOAT32"],
"tags" : [],
"default" : 1.0,
"description" : "the amount of light emitted by a point on the light source in a direction in W/sr/m^2"
}, {
"name" : "visible",
"types" : ["ANARI_BOOL"],
"tags" : [],
"default" : 1,
"description" : "visibility of the light geometry"
}
]
}, {
"type" : "ANARI_LIGHT",
"name" : "point",
"parameters" : [
{
"name" : "radius",
"types" : ["ANARI_FLOAT32"],
"tags" : [],
"default" : 0.0,
"description" : "radius of the sphere light"
}, {
"name" : "radiance",
"types" : ["ANARI_FLOAT32"],
"tags" : [],
"default" : 1.0,
"description" : "the amount of light emitted by a point on the light source in a direction in W/sr/m^2"
}, {
"name" : "visible",
"types" : ["ANARI_BOOL"],
"tags" : [],
"default" : 1,
"description" : "visibility of the light geometry"
}
]
}, {
"type" : "ANARI_LIGHT",
"name" : "hdri",
"parameters" : [
{
"name" : "visible",
"types" : ["ANARI_BOOL"],
"tags" : [],
"default" : 1,
"description" : "visibility of the light geometry"
}
]
}, {
"type" : "ANARI_LIGHT",
"name" : "ring",
"parameters" : [
{
"name" : "visible",
"types" : ["ANARI_BOOL"],
"tags" : [],
"default" : 1,
"description" : "visibility of the light geometry"
}
]
}, {
"type" : "ANARI_LIGHT",
"name" : "quad",
"parameters" : [
{
"name" : "visible",
"types" : ["ANARI_BOOL"],
"tags" : [],
"default" : 1,
"description" : "visibility of the light geometry"
}
]
}, {
"type" : "ANARI_LIGHT",
"name" : "spot",
"parameters" : [
{
"name" : "visible",
"types" : ["ANARI_BOOL"],
"tags" : [],
"default" : 1,
"description" : "visibility of the light geometry"
}
]
}
]
}