Exemple #1
0
 protected Pipeline(ref ComputePipelineDescription computeDescription)
     : this(computeDescription.ResourceLayouts)
 {
 }
Exemple #2
0
 internal Pipeline(ref ComputePipelineDescription computeDescription)
 {
 }
 /// <summary>
 /// Creates a new compute <see cref="Pipeline"/> object.
 /// </summary>
 /// <param name="description">The desirede properties of the created object.</param>
 /// <returns>A new <see cref="Pipeline"/> which, when bound to a CommandList, is used to dispatch compute commands.</returns>
 public abstract Pipeline CreateComputePipeline(ref ComputePipelineDescription description);
Exemple #4
0
 internal Pipeline(ref ComputePipelineDescription computeDescription)
     : this(computeDescription.ResourceLayouts)
 {
 }
 /// <summary>
 /// Creates a new compute <see cref="Pipeline"/> object.
 /// </summary>
 /// <param name="description">The desirede properties of the created object.</param>
 /// <returns>A new <see cref="Pipeline"/> which, when bound to a CommandList, is used to dispatch compute commands.</returns>
 public Pipeline CreateComputePipeline(ComputePipelineDescription description) => CreateComputePipeline(ref description);