mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-29 10:19:18 -05:00
rlLoadFramebuffer no longer have width and height as parameters.
@ -217,7 +217,7 @@ RenderTexture2D LoadRenderTextureWithDepthTexture(int width, int height)
|
|||||||
{
|
{
|
||||||
RenderTexture2D target = {0};
|
RenderTexture2D target = {0};
|
||||||
|
|
||||||
target.id = rlLoadFramebuffer(width, height); // Load an empty framebuffer
|
target.id = rlLoadFramebuffer(); // Load an empty framebuffer
|
||||||
|
|
||||||
if (target.id > 0)
|
if (target.id > 0)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user