소스 검색

gpu: fix an annoying Visual Studio warning in renderer.h.

undefined
Sam Hocevar 10 년 전
부모
커밋
1a19fe393e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/lol/gpu/renderer.h

+ 1
- 1
src/lol/gpu/renderer.h 파일 보기

@@ -40,7 +40,7 @@ static inline ClearMask operator |(ClearMask const &a, ClearMask const &b)

static inline bool operator &(ClearMask const &a, ClearMask const &b)
{
return (bool)((uint8_t)a & (uint8_t)b);
return !!((uint8_t)a & (uint8_t)b);
}

/* A safe enum to indicate the blend equation. */


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