瀏覽代碼

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. */


Loading…
取消
儲存