1
我需要用圓形來顯示圖像的質感,我的代碼如下如何剪輯圓形紋理
texture = Texture.FromBitmap(device,myBitmap, Usage.RenderTarget, Pool.Default);
_sprite.Begin(SpriteFlags.SortTexture | SpriteFlags.DoNotModifyRenderState); _sprite.Draw(_allocator.Texture,Vector3.Empty,new Vector3(_objectLocation.X,_objectLocation.Y,0),RenderingColor); _sprite.End();
但它總是顯示矩形紋理,如何可以將這個紋理剪成圓形。