Пример #1
0
 internal CommandList(ref CommandListDescription description)
 {
 }
 internal CommandList(ref CommandListDescription description, GraphicsDeviceFeatures features)
 {
     _features = features;
 }
Пример #3
0
 /// <summary>
 /// Creates a new <see cref="CommandList"/>.
 /// </summary>
 /// <param name="description">The desired properties of the created object.</param>
 /// <returns>A new <see cref="CommandList"/>.</returns>
 public abstract CommandList CreateCommandList(ref CommandListDescription description);
Пример #4
0
 public CommandList(ref CommandListDescription description)
 {
 }
Пример #5
0
 /// <summary>
 /// Creates a new <see cref="CommandList"/>.
 /// </summary>
 /// <param name="description">The desired properties of the created object.</param>
 /// <returns>A new <see cref="CommandList"/>.</returns>
 public CommandList CreateCommandList(CommandListDescription description) => CreateCommandList(ref description);