summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/painter_prerender.cpp
blob: 1104de6e130d45b099990f19ebbddd939801475f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <mbgl/renderer/painter.hpp>
#include <mbgl/style/style_properties.hpp>
#include <mbgl/renderer/prerendered_texture.hpp>
#include <mbgl/renderer/raster_bucket.hpp>

using namespace mbgl;

void Painter::preparePrerender(RasterBucket &bucket) {
    CHECK_ERROR(glDisable(GL_DEPTH_TEST));
    CHECK_ERROR(glDisable(GL_STENCIL_TEST));

// Render the actual tile.
#if GL_EXT_discard_framebuffer
    const GLenum discards[] = {GL_COLOR_ATTACHMENT0};
    CHECK_ERROR(glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, discards));
#endif
    CHECK_ERROR(glClearColor(0.0, 0.0, 0.0, 0.0));
    CHECK_ERROR(glClear(GL_COLOR_BUFFER_BIT));

    CHECK_ERROR(glViewport(0, 0, bucket.properties.size, bucket.properties.size));
}

void Painter::renderPrerenderedTexture(RasterBucket &bucket, const mat4 &matrix, const RasterProperties& properties) {
    const int buffer = bucket.properties.buffer * 4096.0f;

    // draw the texture on a quad
    useProgram(rasterShader->program);
    rasterShader->u_matrix = matrix;
    rasterShader->u_opacity = 1;

    depthRange(strata, 1.0f);

    CHECK_ERROR(glActiveTexture(GL_TEXTURE0));
    rasterShader->u_image = 0;
    rasterShader->u_buffer = buffer;
    rasterShader->u_opacity = properties.opacity;
    rasterShader->u_brightness_low = properties.brightness[0];
    rasterShader->u_brightness_high = properties.brightness[1];
    rasterShader->u_saturation_factor = saturationFactor(properties.saturation);
    rasterShader->u_contrast_factor = contrastFactor(properties.contrast);
    rasterShader->u_spin_weights = spinWeights(properties.hue_rotate);
    bucket.texture.bindTexture();
    coveringRasterArray.bind(*rasterShader, tileStencilBuffer, BUFFER_OFFSET(0));
    CHECK_ERROR(glDrawArrays(GL_TRIANGLES, 0, (GLsizei)tileStencilBuffer.index()));
}