コード例 #1
0
ファイル: TextureManager.cs プロジェクト: yomifrogs/Ryujinx
 /// <summary>
 /// Sets the texture constant buffer index on the compute pipeline.
 /// </summary>
 /// <param name="index">The texture constant buffer index</param>
 public void SetComputeTextureBufferIndex(int index)
 {
     _cpBindingsManager.SetTextureBufferIndex(index);
 }
コード例 #2
0
ファイル: TextureManager.cs プロジェクト: ntrancer/Ryujinx
 /// <summary>
 /// Sets the texture constant buffer index on the graphics pipeline.
 /// </summary>
 /// <param name="index">The texture constant buffer index</param>
 public void SetGraphicsTextureBufferIndex(int index)
 {
     _gpBindingsManager.SetTextureBufferIndex(index);
 }