diff options
author | Brian Paul <[email protected]> | 2009-11-03 16:13:22 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-11-03 16:13:24 -0700 |
commit | 6eb71519f7d08344b7f9819db22980f9c6fade3c (patch) | |
tree | 6274346b92657c0dca7fe56c2336c65f33aefe1c /src/mesa/main/get_gen.py | |
parent | c5106339d38dfac6652be9788ae8c78efab7667c (diff) |
mesa: (GLint64) casts in get.c to silence Visual Studio warnings
Revised version of a patch from Karl Schultz.
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 2878c1b5526..c7babd1c816 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -1042,7 +1042,7 @@ def ConversionFunc(fromType, toType): elif fromType == GLint and toType == GLfloat: # but not GLfloatN! return "(GLfloat)" elif fromType == GLint and toType == GLint64: - return "" + return "(GLint64)" elif fromType == GLint64 and toType == GLfloat: # but not GLfloatN! return "(GLfloat)" else: |