You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
l.line "max in attributes: %d" x.MaxInputAttributes
236
236
l.line "max in bindings: %d" x.MaxInputBindings
237
237
l.line "max in offset: %d" x.MaxInputAttributeOffset
@@ -252,7 +252,7 @@ type TessControlLimits =
252
252
/// the maximum total number of components of per-vertex and per-patch output variables which can be output from the tessellation control shader stage.
253
253
MaxTotalOutputComponents :int
254
254
}
255
-
memberx.Print(l :ILogger)=
255
+
memberinternalx.Print(l :ILogger)=
256
256
l.line "max vertex in components: %d" x.MaxPerVertexInputComponents
257
257
l.line "max vertex out components: %d" x.MaxPerVertexOutputComponents
258
258
l.line "max patch out components: %d" x.MaxPerPatchOutputComponents
@@ -266,7 +266,7 @@ type TessEvalLimits =
266
266
/// the maximum number of components of per-vertex output variables which can be output from the tessellation evaluation shader stage.
267
267
MaxOutputComponents :int
268
268
}
269
-
memberx.Print(l :ILogger)=
269
+
memberinternalx.Print(l :ILogger)=
270
270
l.line "max in components: %d" x.MaxInputComponents
271
271
l.line "max out components: %d" x.MaxOutputComponents
272
272
@@ -282,7 +282,7 @@ type TessellationLimits =
282
282
TessEvalLimits :TessEvalLimits
283
283
}
284
284
285
-
memberx.Print(l :ILogger)=
285
+
memberinternalx.Print(l :ILogger)=
286
286
l.line "max gen level: %d" x.MaxGenerationLevel
287
287
l.line "max patch size: %d" x.MaxPatchSize
288
288
l.section "control:"(fun()->
@@ -309,7 +309,7 @@ type GeometryLimits =
309
309
/// the maximum total number of components of output, across all emitted vertices, which can be output from the geometry shader stage.
310
310
MaxTotalOutputComponents :int
311
311
}
312
-
memberx.Print(l :ILogger)=
312
+
memberinternalx.Print(l :ILogger)=
313
313
l.line "max invocations: %d" x.MaxInvocations
314
314
l.line "max out vertices: %d" x.MaxOutputVertices
315
315
l.line "max in components: %d" x.MaxInputComponents
@@ -335,7 +335,7 @@ type FragmentLimits =
335
335
/// the maximum number of array elements of a variable decorated with the SampleMask built-in decoration.
336
336
MaxSampleMaskWords :int
337
337
}
338
-
memberx.Print(l :ILogger)=
338
+
memberinternalx.Print(l :ILogger)=
339
339
l.line "max in components: %d" x.MaxInputComponents
340
340
l.line "max out attachments: %d" x.MaxOutputAttachments
/// the maximum size of a local compute workgroup, per dimension. These three values represent the maximum local workgroup size in the X, Y, and Z dimensions, respectively.
357
357
MaxWorkGroupSize :V3i
358
358
}
359
-
memberx.Print(l :ILogger)=
359
+
memberinternalx.Print(l :ILogger)=
360
360
l.line "shared memory: %A" x.MaxSharedMemorySize
361
361
l.line "max group counts: %A" x.MaxWorkGroupCount
362
362
l.line "max group invocations: %d" x.MaxWorkGroupInvocations
0 commit comments