summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Content
diff options
context:
space:
mode:
authoratravita-mods <94934860+atravita-mods@users.noreply.github.com>2022-08-16 15:30:21 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-08 13:27:05 -0400
commit4a1055e573e9d8b0aa654238889596be07c29193 (patch)
tree0128dd695e9312ccc111268a6b56b0023e101b08 /src/SMAPI/Framework/Content
parent78643710ce09197dbb5505fd8cc2361c8ada0830 (diff)
downloadSMAPI-4a1055e573e9d8b0aa654238889596be07c29193.tar.gz
SMAPI-4a1055e573e9d8b0aa654238889596be07c29193.tar.bz2
SMAPI-4a1055e573e9d8b0aa654238889596be07c29193.zip
arraypool in the modcontentmanager, a bit of fussing
Diffstat (limited to 'src/SMAPI/Framework/Content')
-rw-r--r--src/SMAPI/Framework/Content/AssetDataForImage.cs15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/SMAPI/Framework/Content/AssetDataForImage.cs b/src/SMAPI/Framework/Content/AssetDataForImage.cs
index 98d6725a..46c2a22e 100644
--- a/src/SMAPI/Framework/Content/AssetDataForImage.cs
+++ b/src/SMAPI/Framework/Content/AssetDataForImage.cs
@@ -33,12 +33,12 @@ namespace StardewModdingAPI.Framework.Content
/// <inheritdoc />
public void PatchImage(IRawTextureData source, Rectangle? sourceArea = null, Rectangle? targetArea = null, PatchMode patchMode = PatchMode.Replace)
{
- this.GetPatchBounds(ref sourceArea, ref targetArea, source.Width, source.Height);
-
- // validate source data
+ // nullcheck
if (source == null)
throw new ArgumentNullException(nameof(source), "Can't patch from null source data.");
+ this.GetPatchBounds(ref sourceArea, ref targetArea, source.Width, source.Height);
+
// get the pixels for the source area
Color[] sourceData;
{
@@ -59,7 +59,6 @@ namespace StardewModdingAPI.Framework.Content
for (int y = areaY, maxY = areaY + areaHeight; y < maxY; y++)
{
- // avoiding an variable that increments allows the processor to re-arrange here.
int sourceIndex = (y * source.Width) + areaX;
int targetIndex = (y - areaY) * areaWidth;
Array.Copy(source.Data, sourceIndex, sourceData, targetIndex, areaWidth);
@@ -77,13 +76,13 @@ namespace StardewModdingAPI.Framework.Content
/// <inheritdoc />
public void PatchImage(Texture2D source, Rectangle? sourceArea = null, Rectangle? targetArea = null, PatchMode patchMode = PatchMode.Replace)
{
- // validate
+ // nullcheck
if (source == null)
throw new ArgumentNullException(nameof(source), "Can't patch from a null source texture.");
this.GetPatchBounds(ref sourceArea, ref targetArea, source.Width, source.Height);
- // validate source texture
+ // validate source bounds
if (!source.Bounds.Contains(sourceArea.Value))
throw new ArgumentOutOfRangeException(nameof(sourceArea), "The source area is outside the bounds of the source texture.");
@@ -161,8 +160,8 @@ namespace StardewModdingAPI.Framework.Content
// merge pixels
for (int i = 0; i < pixelCount; i++)
{
- Color above = sourceData[i];
- Color below = mergedData[i];
+ ref Color above = ref sourceData[i];
+ ref Color below = ref mergedData[i];
// shortcut transparency
if (above.A < MinOpacity)