소스 검색

Corrected typo

pull/676/head
Ray 6 년 전
부모
커밋
1f4866276a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/rlgl.h

+ 2
- 2
src/rlgl.h 파일 보기

@ -1510,7 +1510,7 @@ void rlDeleteRenderTextures(RenderTexture2D target)
if (target.depth.id > 0)
{
#if defined(GRAPHICS_API_OPENGL_ES2)
glDeleteRenderBuffers(1, &target.depth.id);
glDeleteRenderbuffers(1, &target.depth.id);
#elif defined(GRAPHICS_API_OPENGL_33)
glDeleteTextures(1, &target.depth.id);
#endif
@ -2263,7 +2263,7 @@ RenderTexture2D rlLoadRenderTexture(int width, int height)
if (target.depth.id > 0)
{
#if defined(GRAPHICS_API_OPENGL_ES2)
glDeleteRenderBuffers(1, &target.depth.id);
glDeleteRenderbuffers(1, &target.depth.id);
#elif defined(GRAPHICS_API_OPENGL_33)
glDeleteTextures(1, &target.depth.id);
#endif

불러오는 중...
취소
저장