File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,12 @@ cfg_condition = "feature = \"broadway\""
25
25
[[object .function ]]
26
26
pattern = " (new|get_type)"
27
27
cfg_condition = " feature = \" broadway\" "
28
-
28
+
29
+ [[object ]]
30
+ name = " Gsk.BroadwayRendererClass"
31
+ status = " generate"
32
+ cfg_condition = " feature = \" broadway\" "
33
+
29
34
[[object ]]
30
35
name = " Gsk.PathMeasure"
31
36
status = " generate"
@@ -38,3 +43,8 @@ cfg_condition = "feature = \"vulkan\""
38
43
[[object .function ]]
39
44
pattern = " (new|get_type)"
40
45
cfg_condition = " feature = \" vulkan\" "
46
+
47
+ [[object ]]
48
+ name = " Gsk.VulkanRendererClass"
49
+ status = " generate"
50
+ cfg_condition = " feature = \" vulkan\" "
Original file line number Diff line number Diff line change @@ -184,12 +184,16 @@ pub type GskPathForeachFunc = Option<
184
184
> ;
185
185
186
186
// Records
187
+ #[ cfg( feature = "broadway" ) ]
188
+ #[ cfg_attr( docsrs, doc( cfg( feature = "broadway" ) ) ) ]
187
189
#[ repr( C ) ]
188
190
pub struct _GskBroadwayRendererClass {
189
191
_data : [ u8 ; 0 ] ,
190
192
_marker : core:: marker:: PhantomData < ( * mut u8 , core:: marker:: PhantomPinned ) > ,
191
193
}
192
194
195
+ #[ cfg( feature = "broadway" ) ]
196
+ #[ cfg_attr( docsrs, doc( cfg( feature = "broadway" ) ) ) ]
193
197
pub type GskBroadwayRendererClass = * mut _GskBroadwayRendererClass ;
194
198
195
199
#[ repr( C ) ]
@@ -393,12 +397,16 @@ impl ::std::fmt::Debug for GskTransform {
393
397
}
394
398
}
395
399
400
+ #[ cfg( feature = "vulkan" ) ]
401
+ #[ cfg_attr( docsrs, doc( cfg( feature = "vulkan" ) ) ) ]
396
402
#[ repr( C ) ]
397
403
pub struct _GskVulkanRendererClass {
398
404
_data : [ u8 ; 0 ] ,
399
405
_marker : core:: marker:: PhantomData < ( * mut u8 , core:: marker:: PhantomPinned ) > ,
400
406
}
401
407
408
+ #[ cfg( feature = "vulkan" ) ]
409
+ #[ cfg_attr( docsrs, doc( cfg( feature = "vulkan" ) ) ) ]
402
410
pub type GskVulkanRendererClass = * mut _GskVulkanRendererClass ;
403
411
404
412
// Classes
You can’t perform that action at this time.
0 commit comments