HexaEngine / Hexa.NET.DirectXTex

A .NET wrapper for the DirectXTex library.
MIT License
2 stars 0 forks source link
bindings codegenerator csharp directx directxtex image image-processing wrapper

Hexa.NET.DirectXTex

Hexa.NET.DirectXTex is a thin .NET wrapper for the DirectXTex library, providing developers with streamlined access to DirectX texture processing functionalities within .NET applications.

Table of Contents

Introduction

DirectXTex is a comprehensive library for handling texture processing in DirectX applications. Hexa.NET.DirectXTex aims to bridge the gap between .NET developers and the powerful features of DirectXTex by providing a straightforward and user-friendly thin wrapper.

Features

Installation

You can install Hexa.NET.DirectXTex via NuGet Package Manager:

Install-Package Hexa.NET.DirectXTex

Or add it to your .csproj file:

<PackageReference Include="Hexa.NET.DirectXTex" Version="2.0.0" />

A standalone version is also available (without depending on Silk)

<PackageReference Include="Hexa.NET.DirectXTex.Standalone" Version="2.0.0" />

Usage

Here's a quick example of how to use Hexa.NET.DirectXTex to load a texture, generate mipmaps, and save it in a different format:

    using Hexa.NET.DirectXTex;

    public class Program
    {
        private static unsafe void Main(string[] args)
        {
            ScratchImage image = DirectXTex.CreateScratchImage();
            TexMetadata metadata = default;

            string inputPath = "assets/textures/test.dds";
            DirectXTex.LoadFromDDSFile(inputPath, DDSFlags.None, ref metadata, image);

            ScratchImage mipChain = DirectXTex.CreateScratchImage();
            int mipLevels = 4;
            DirectXTex.GenerateMipMaps2(image.GetImages(), image.GetImageCount(), ref metadata, TexFilterFlags.Default, (ulong)mipLevels, ref mipChain);
            image.Release();

            string outputPath = "test.dds";
            TexMetadata mipChainMetadata = mipChain.GetMetadata();
            DirectXTex.SaveToDDSFile2(mipChain.GetImages(), mipChain.GetImageCount(), ref mipChainMetadata, DDSFlags.None, outputPath);

            mipChain.Release();
        }
    }

API Documentation

The full API documentation is available here. It provides detailed information on all available methods and classes within Hexa.NET.DirectXTex, as it is a thin wrapper around the DirectXTex library.

Contributing

We welcome contributions from the community! If you'd like to contribute, please follow these steps:

Fork the repository.
Create a new branch with a descriptive name.
Make your changes and commit them with clear and concise messages.
Push your changes to your fork.
Submit a pull request.

Please ensure that your code adheres to the project's coding standards and includes appropriate tests.

License

This project is licensed under the MIT License. See the LICENSE file for more information.

Acknowledgements

The DirectXTex library: DirectXTex
The .NET community for their continuous support and contributions.

Feel free to modify as needed!