소스 검색

gpu: remove FrameBuffer::Clear(), it's not really useful.

legacy
Sam Hocevar sam 12 년 전
부모
커밋
95d26d18dd
1개의 변경된 파일0개의 추가작업 그리고 19개의 파일을 삭제
  1. +0
    -19
      src/gpu/framebuffer.cpp

+ 0
- 19
src/gpu/framebuffer.cpp 파일 보기

@@ -116,25 +116,6 @@ int FrameBuffer::GetTexture() const
#endif
}

void FrameBuffer::Clear(vec4 color)
{
#if defined USE_D3D9 || defined _XBOX
#elif !defined __CELLOS_LV2__ && !defined __ANDROID__
glClearColor(color.r, color.g, color.b, color.a);
glClear(GL_COLOR_BUFFER_BIT);
#endif
}

void FrameBuffer::Clear(vec4 color, float depth)
{
#if defined USE_D3D9 || defined _XBOX
#elif !defined __CELLOS_LV2__ && !defined __ANDROID__
glClearColor(color.r, color.g, color.b, color.a);
//glClearDepthf(depth);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
#endif
}

void FrameBuffer::Bind()
{
#if defined USE_D3D9 || defined _XBOX


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