From 71610bc8e5a8c192739295107b00e1e92043b38c Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 27 Dec 2020 12:49:13 +0000 Subject: [PATCH] Add missing format argument to GenTetxureCubemap --- Raylib-cs/Raylib.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 7bb4506..1e8c422 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -2614,7 +2614,7 @@ namespace Raylib_cs // Generate cubemap texture from HDR texture [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 [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]