Kaynağa Gözat

update rlgl.h

pull/4832/head
Bigfoot71 1 hafta önce
ebeveyn
işleme
89d40510c6
1 değiştirilmiş dosya ile 6 ekleme ve 7 silme
  1. +6
    -7
      src/rlgl.h

+ 6
- 7
src/rlgl.h Dosyayı Görüntüle

@ -773,7 +773,7 @@ RLAPI void rlFramebufferAttach(unsigned int fboId, unsigned int texId, int attac
RLAPI bool rlFramebufferComplete(unsigned int id); // Verify framebuffer is complete RLAPI bool rlFramebufferComplete(unsigned int id); // Verify framebuffer is complete
RLAPI void rlUnloadFramebuffer(unsigned int id); // Delete framebuffer from GPU RLAPI void rlUnloadFramebuffer(unsigned int id); // Delete framebuffer from GPU
#if defined(GRAPHICS_API_OPENGL_11_SOFTWARE) #if defined(GRAPHICS_API_OPENGL_11_SOFTWARE)
RLAPI void* rlGetFramebuffer(int* width, int* height);
RLAPI void rlCopyFramebuffer(int x, int y, int w, int h, int format, void* pixels);
RLAPI void rlResizeFramebuffer(int width, int height); RLAPI void rlResizeFramebuffer(int width, int height);
#endif #endif
@ -3696,17 +3696,16 @@ void *rlReadTexturePixels(unsigned int id, int width, int height, int format)
} }
#if defined(GRAPHICS_API_OPENGL_11_SOFTWARE) #if defined(GRAPHICS_API_OPENGL_11_SOFTWARE)
void* rlGetFramebuffer(int* width, int* height)
void rlCopyFramebuffer(int x, int y, int w, int h, int format, void* pixels)
{ {
return swGetColorBuffer(&width, &height);
unsigned int glInternalFormat, glFormat, glType;
rlGetGlTextureFormats(format, &glInternalFormat, &glFormat, &glType);
swCopyFramebuffer(x, y, w, h, glFormat, glType, pixels);
} }
void rlResizeFramebuffer(int width, int height) void rlResizeFramebuffer(int width, int height)
{ {
swResizeFramebuffer(width, height); swResizeFramebuffer(width, height);
} }
#endif #endif
// Read screen pixel data (color buffer) // Read screen pixel data (color buffer)
@ -5306,4 +5305,4 @@ static Matrix rlMatrixInvert(Matrix mat)
return result; return result;
} }
#endif // RLGL_IMPLEMENTATION
#endif // RLGL_IMPLEMENTATION

Yükleniyor…
İptal
Kaydet