2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Add missing format argument to GenTetxureCubemap

This commit is contained in:
ChrisDill 2020-12-27 12:49:13 +00:00
parent 75a4d9bf27
commit 71610bc8e5

View File

@ -2614,7 +2614,7 @@ namespace Raylib_cs
// Generate cubemap texture from HDR texture // Generate cubemap texture from HDR texture
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size); public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size, PixelFormat format);
// Generate irradiance texture using cubemap data // Generate irradiance texture using cubemap data
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]