summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-01-16 18:34:56 +0100
committerKonstantin Käfer <mail@kkaefer.com>2014-01-16 18:34:56 +0100
commitfc8a0d00ac17dfaa16c363a88c4c4c14298ec1dc (patch)
treed9f2515a496d054bd55ada031ca26f94d858c6ed /src
parenta7f4cb38298a92020a53633af54f557da1b56477 (diff)
downloadqtlocation-mapboxgl-fc8a0d00ac17dfaa16c363a88c4c4c14298ec1dc.tar.gz
correct tile boundary line
Diffstat (limited to 'src')
-rw-r--r--src/renderer/painter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/renderer/painter.cpp b/src/renderer/painter.cpp
index 8e7ba62858..8ef4708521 100644
--- a/src/renderer/painter.cpp
+++ b/src/renderer/painter.cpp
@@ -21,9 +21,9 @@ GLshort tile_stencil_vertices[] = {
GLshort tile_border_vertices[] = {
0, 0,
- 4095, 0,
- 4095, 4095,
- 0, 4095,
+ 4096, 0,
+ 4096, 4096,
+ 0, 4096,
0, 0
};