Skip to content

Commit

Permalink
Minor typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcant0n committed Sep 16, 2024
1 parent 1c64f5a commit 55686ca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OpenXRGen/Evergine.Bindings.OpenXR/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static unsafe partial class OpenXRNative
static OpenXRNative()
{
nativeLib = LoadNativeLibrary();
LoadFuncionPointers();
LoadFunctionPointers();
}

private static NativeLibrary LoadNativeLibrary()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright (c) Evergine 2024</Copyright>
<Authors>Evergine Team</Authors>
<Company>Plain Concepts</Company>
<Description>Low-level bindings for OpenXR used in Evergine</Description>
<RepositoryUrl>https://github.com/EvergineTeam/OpenXR.NET</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand All @@ -16,10 +20,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\icon.png" Pack="true" PackagePath="\" Visible="false" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion OpenXRGen/Evergine.Bindings.OpenXR/Generated/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1715,7 +1715,7 @@ public static XrResult xrPollFutureEXT(XrInstance instance, XrFuturePollInfoEXT*
public static XrResult xrCancelFutureEXT(XrInstance instance, XrFutureCancelInfoEXT* cancelInfo)
=> xrCancelFutureEXT_ptr(instance, cancelInfo);

public static void LoadFuncionPointers(XrInstance instance = default)
public static void LoadFunctionPointers(XrInstance instance = default)
{
if (instance != default)
{
Expand Down
2 changes: 1 addition & 1 deletion OpenXRGen/OpenXRGen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ static void Main(string[] args)
file.WriteLine($"\t\t\t=> {command.Prototype.Name}_ptr({command.GetParametersSignature(openXRSpec, useTypes: false)});\n");
}

file.WriteLine($"\t\tpublic static void LoadFuncionPointers(XrInstance instance = default)");
file.WriteLine($"\t\tpublic static void LoadFunctionPointers(XrInstance instance = default)");
file.WriteLine("\t\t{");
file.WriteLine("\t\t\tif (instance != default)");
file.WriteLine("\t\t\t{");
Expand Down

0 comments on commit 55686ca

Please sign in to comment.