瀏覽代碼

tnl: fix MSVC signed/unsigned warnings

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
tags/gles3-fmt-v1
Brian Paul 13 年之前
父節點
當前提交
cb5fb15578
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      src/mesa/tnl/t_draw.c

+ 2
- 1
src/mesa/tnl/t_draw.c 查看文件

@@ -141,7 +141,8 @@ convert_fixed_to_float(const struct gl_client_array *input,
const GLubyte *ptr, GLfloat *fptr,
GLuint count)
{
GLuint i, j;
GLuint i;
GLint j;
const GLint size = input->Size;

if (input->Normalized) {

Loading…
取消
儲存