File tree 1 file changed +13
-13
lines changed 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -218,37 +218,37 @@ pub struct Cmd {
218
218
219
219
#[ derive( Clone ) ]
220
220
struct Feature {
221
- pub api : Api ,
222
- pub name : String ,
223
- pub number : String ,
224
- pub requires : Vec < Require > ,
225
- pub removes : Vec < Remove > ,
221
+ api : Api ,
222
+ name : String ,
223
+ number : String ,
224
+ requires : Vec < Require > ,
225
+ removes : Vec < Remove > ,
226
226
}
227
227
228
228
#[ derive( Clone ) ]
229
229
struct Require {
230
230
/// A reference to the earlier types, by name
231
- pub enums : Vec < String > ,
231
+ enums : Vec < String > ,
232
232
/// A reference to the earlier types, by name
233
- pub commands : Vec < String > ,
233
+ commands : Vec < String > ,
234
234
}
235
235
236
236
#[ derive( Clone ) ]
237
237
struct Remove {
238
238
// always Core, for now
239
- pub profile : Profile ,
239
+ profile : Profile ,
240
240
/// A reference to the earlier types, by name
241
- pub enums : Vec < String > ,
241
+ enums : Vec < String > ,
242
242
/// A reference to the earlier types, by name
243
- pub commands : Vec < String > ,
243
+ commands : Vec < String > ,
244
244
}
245
245
246
246
#[ derive( Clone ) ]
247
247
struct Extension {
248
- pub name : String ,
248
+ name : String ,
249
249
/// which apis this extension is defined for (see Feature.api)
250
- pub supported : Vec < Api > ,
251
- pub requires : Vec < Require > ,
250
+ supported : Vec < Api > ,
251
+ requires : Vec < Require > ,
252
252
}
253
253
254
254
pub struct GlxOpcode {
You can’t perform that action at this time.
0 commit comments