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:
authorAntony Riakiotakis <kalast@gmail.com>2013-04-12 21:56:07 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-04-12 21:56:07 +0400
commitd0beabb642ea8acb8e3d69aa3fc503ad703e7dfd (patch)
tree35684f2a142bd21b4e1c380ad61a8d8ff9df25c9 /source/blender/blenfont/intern/blf_glyph.c
parenta305452275207a555d2812c3a5ea6647f0f594e4 (diff)
Add function to query maximum texture size. Also, make texture upload
functions aware of this limit.
Diffstat (limited to 'source/blender/blenfont/intern/blf_glyph.c')
-rw-r--r--source/blender/blenfont/intern/blf_glyph.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c
index a6b04b24399..142acf755fc 100644
--- a/source/blender/blenfont/intern/blf_glyph.c
+++ b/source/blender/blenfont/intern/blf_glyph.c
@@ -55,6 +55,7 @@
#include "blf_internal_types.h"
#include "blf_internal.h"
+#include "GPU_extensions.h"
GlyphCacheBLF *blf_glyph_cache_find(FontBLF *font, int size, int dpi)
{
@@ -381,7 +382,7 @@ int blf_glyph_render(FontBLF *font, GlyphBLF *g, float x, float y)
GlyphCacheBLF *gc = font->glyph_cache;
if (font->max_tex_size == -1)
- glGetIntegerv(GL_MAX_TEXTURE_SIZE, (GLint *)&font->max_tex_size);
+ font->max_tex_size = GPU_max_texture_size();
if (gc->cur_tex == -1) {
blf_glyph_cache_texture(font, gc);