File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
include/nbl/builtin/hlsl/shapes Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright (C) 2018-2023 - DevSH Graphics Programming Sp. z O.O.
2
+ // This file is part of the "Nabla Engine".
3
+ // For conditions of distribution and use, see copyright notice in nabla.h
4
+ namespace nbl
5
+ {
6
+ namespace hlsl
7
+ {
8
+ namespace shapes
9
+ {
10
+ struct CubicBezier
11
+ {
12
+ static CubicBezier construct ()
13
+ {
14
+ }
15
+
16
+ float signedDistance (float2 p)
17
+ {
18
+ }
19
+ };
20
+
21
+ struct QuadraticBezier
22
+ {
23
+ static QuadraticBezier construct ()
24
+ {
25
+ }
26
+
27
+ float signedDistance (float2 p)
28
+ {
29
+ }
30
+ };
31
+ }
32
+ }
33
+ }
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ set(NBL_RESOURCES_TO_EMBED
136
136
"nbl/builtin/hlsl/shapes/ellipse.hlsl"
137
137
"nbl/builtin/hlsl/shapes/line.hlsl"
138
138
"nbl/builtin/hlsl/shapes/rounded_line.hlsl"
139
+ "nbl/builtin/hlsl/shapes/beziers.hlsl"
139
140
# skinning
140
141
"nbl/builtin/glsl/skinning/cache_descriptor_set.glsl"
141
142
"nbl/builtin/glsl/skinning/cache_update.comp"
You can’t perform that action at this time.
0 commit comments