Skip to content

Commit

Permalink
Fix dependancies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebane1 committed Mar 14, 2024
1 parent 94a91e0 commit f449c2b
Show file tree
Hide file tree
Showing 5 changed files with 393 additions and 387 deletions.
2 changes: 1 addition & 1 deletion LooseTextureCompilerCore
4 changes: 2 additions & 2 deletions Penumbra/Import/Models/Export/MaterialExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private static MaterialBuilder BuildCharacter(Material material, string name)
var normal = material.Textures[TextureUsage.SamplerNormal];

var operation = new ProcessCharacterNormalOperation(normal, table);
ParallelRowIterator.IterateRows(ImageSharpConfiguration.Default, normal.Bounds(), in operation);
ParallelRowIterator.IterateRows(ImageSharpConfiguration.Default, normal.Bounds, in operation);

// Check if full textures are provided, and merge in if available.
var baseColor = operation.BaseColor;
Expand Down Expand Up @@ -199,7 +199,7 @@ public static void Execute<TPixel1, TPixel2>(Image<TPixel1> target, Image<TPixel
small.Mutate(context => context.Resize(large.Width, large.Height));

var operation = new MultiplyOperation<TPixel1, TPixel2>(target, multiplier);
ParallelRowIterator.IterateRows(ImageSharpConfiguration.Default, target.Bounds(), in operation);
ParallelRowIterator.IterateRows(ImageSharpConfiguration.Default, target.Bounds, in operation);
}
}

Expand Down
7 changes: 2 additions & 5 deletions Penumbra/Penumbra.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@
<HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
<HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
<Private>False</Private>
Expand All @@ -69,8 +65,9 @@

<ItemGroup>
<PackageReference Include="EmbedIO" Version="3.4.3" />
<PackageReference Include="Lumina.Excel" Version="6.5.2" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SharpCompress" Version="0.33.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="SharpGLTF.Core" Version="1.0.0-alpha0030" />
Expand Down
Loading

0 comments on commit f449c2b

Please sign in to comment.