Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-09-10 17:02:58 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-09-10 17:02:58 +0400
commit90272dfdad61a6de223d96ce14a4fe4c75a1347d (patch)
tree76888e36713a1b66a74d307da0247fbdff675747 /source/blender/include
parenta42dd1482fb0b2d861f3bc46da1236d1835fec53 (diff)
Fix for bug #8132: on Mac OS X 10.5 with Nvidia cards drawing
background images and node previews goes wrong. The exact cause of that is not sure, may be a driver bug, workaround is to fall back to another slower function.
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/BIF_glutil.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/include/BIF_glutil.h b/source/blender/include/BIF_glutil.h
index f530e7ba8d0..ed9096549ca 100644
--- a/source/blender/include/BIF_glutil.h
+++ b/source/blender/include/BIF_glutil.h
@@ -204,6 +204,7 @@ void bglVertex2fv(float *vec);
/* intel gfx cards frontbuffer problem */
void bglFlush(void);
int is_a_really_crappy_intel_card(void);
+int is_a_really_crappy_nvidia_card(void);
void set_inverted_drawing(int enable);