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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
|
#include "blur.hpp"
#include "wayfire/core.hpp"
#include "wayfire/geometry.hpp"
#include "wayfire/region.hpp"
#include "wayfire/scene-render.hpp"
#include <glm/ext/matrix_transform.hpp>
#include <wayfire/output.hpp>
#include <wayfire/workspace-set.hpp>
#include <wayfire/util/log.hpp>
static const char *blur_blend_vertex_shader =
R"(
#version 100
attribute highp vec2 position;
attribute highp vec2 uv_in;
varying highp vec2 uvpos[2];
uniform mat4 mvp;
uniform mat4 background_uv_matrix;
void main() {
gl_Position = mvp * vec4(position, 0.0, 1.0);
uvpos[0] = uv_in;
uvpos[1] = vec4(background_uv_matrix * vec4(uv_in - 0.5, 0.0, 1.0)).xy + 0.5;
})";
static const char *blur_blend_fragment_shader =
R"(
#version 100
@builtin_ext@
precision highp float;
@builtin@
uniform float sat;
uniform sampler2D bg_texture;
varying highp vec2 uvpos[2];
vec3 saturation(vec3 rgb, float adjustment)
{
// Algorithm from Chapter 16 of OpenGL Shading Language
const vec3 w = vec3(0.2125, 0.7154, 0.0721);
vec3 intensity = vec3(dot(rgb, w));
return mix(intensity, rgb, adjustment);
}
void main()
{
vec4 bp = texture2D(bg_texture, uvpos[1]);
bp = vec4(saturation(bp.rgb, sat), bp.a);
vec4 wp = get_pixel(uvpos[0]);
vec4 c = clamp(4.0 * wp.a, 0.0, 1.0) * bp;
gl_FragColor = wp + (1.0 - wp.a) * c;
})";
wf_blur_base::wf_blur_base(std::string name)
{
this->algorithm_name = name;
this->saturation_opt.load_option("blur/saturation");
this->offset_opt.load_option("blur/" + algorithm_name + "_offset");
this->degrade_opt.load_option("blur/" + algorithm_name + "_degrade");
this->iterations_opt.load_option("blur/" + algorithm_name + "_iterations");
this->options_changed = [=] ()
{
wf::scene::damage_node(wf::get_core().scene(), wf::get_core().scene()->get_bounding_box());
};
this->saturation_opt.set_callback(options_changed);
this->offset_opt.set_callback(options_changed);
this->degrade_opt.set_callback(options_changed);
this->iterations_opt.set_callback(options_changed);
wf::gles::run_in_context_if_gles([&]
{
blend_program.compile(blur_blend_vertex_shader, blur_blend_fragment_shader);
});
}
wf_blur_base::~wf_blur_base()
{
wf::gles::run_in_context_if_gles([&]
{
program[0].free_resources();
program[1].free_resources();
blend_program.free_resources();
});
}
int wf_blur_base::calculate_blur_radius()
{
return offset_opt * degrade_opt * std::max(1, (int)iterations_opt);
}
void wf_blur_base::render_iteration(wf::region_t blur_region,
wf::auxilliary_buffer_t& in, wf::auxilliary_buffer_t& out,
int width, int height)
{
/* Special case for small regions where we can't really blur, because we
* simply have too few pixels */
width = std::max(width, 1);
height = std::max(height, 1);
out.allocate({width, height});
GLuint tex_id = wf::gles_texture_t::from_aux(in).tex_id;
wf::gles::bind_render_buffer(out.get_renderbuffer());
GL_CALL(glActiveTexture(GL_TEXTURE0));
GL_CALL(glBindTexture(GL_TEXTURE_2D, tex_id));
for (auto& b : blur_region)
{
wf::gles::scissor_render_buffer(out.get_renderbuffer(), wlr_box_from_pixman_box(b));
GL_CALL(glDrawArrays(GL_TRIANGLE_FAN, 0, 4));
}
}
/** @return Smallest integer >= x which is divisible by mod */
static int round_up(int x, int mod)
{
return mod * int((x + mod - 1) / mod);
}
/**
* Calculate the smallest box which contains @box and whose x, y, width, height
* are divisible by @degrade, and clamp that box to @bounds.
*/
static wf::geometry_t sanitize(wf::geometry_t box, int degrade,
wf::geometry_t bounds)
{
wf::geometry_t out_box;
out_box.x = degrade * int(box.x / degrade);
out_box.y = degrade * int(box.y / degrade);
out_box.width = round_up(box.width, degrade);
out_box.height = round_up(box.height, degrade);
if (out_box.x + out_box.width < box.x + box.width)
{
out_box.width += degrade;
}
if (out_box.y + out_box.height < box.y + box.height)
{
out_box.height += degrade;
}
return wf::clamp(out_box, bounds);
}
wlr_box wf_blur_base::copy_region(wf::auxilliary_buffer_t& result,
const wf::render_target_t& source, const wf::region_t& region)
{
auto subbox = source.framebuffer_box_from_geometry_box(
wlr_box_from_pixman_box(region.get_extents()));
auto source_box =
source.framebuffer_box_from_geometry_box(source.geometry);
// Make sure that the box is aligned properly for degrading, otherwise,
// we get a flickering
subbox = sanitize(subbox, degrade_opt, source_box);
int degraded_width = subbox.width / degrade_opt;
int degraded_height = subbox.height / degrade_opt;
result.allocate({degraded_width, degraded_height});
GLuint src_fb = wf::gles::ensure_render_buffer_fb_id(source);
GLuint dst_fb = wf::gles::ensure_render_buffer_fb_id(result.get_renderbuffer());
GL_CALL(glBindFramebuffer(GL_READ_FRAMEBUFFER, src_fb));
GL_CALL(glBindFramebuffer(GL_DRAW_FRAMEBUFFER, dst_fb));
GL_CALL(glBlitFramebuffer(
subbox.x, subbox.y,
subbox.x + subbox.width, subbox.y + subbox.height,
0, 0, degraded_width, degraded_height,
GL_COLOR_BUFFER_BIT, GL_NEAREST));
return subbox;
}
void wf_blur_base::prepare_blur(const wf::render_target_t& target_fb, const wf::region_t& damage)
{
if (damage.empty())
{
return;
}
int degrade = degrade_opt;
auto damage_box = copy_region(fb[0], target_fb, damage);
/* As an optimization, we create a region that blur can use
* to perform minimal rendering required to blur. We start
* by translating the input damage region */
wf::region_t blur_damage;
for (auto b : damage)
{
blur_damage |= target_fb.framebuffer_box_from_geometry_box(
wlr_box_from_pixman_box(b));
}
/* Scale and translate the region */
blur_damage += -wf::point_t{damage_box.x, damage_box.y};
blur_damage *= 1.0 / degrade;
int r = blur_fb0(blur_damage, fb[0].get_size().width, fb[0].get_size().height);
/* Make sure the result is always fb[0], because that's what is used in render()
* */
if (r != 0)
{
std::swap(fb[0], fb[1]);
}
prepared_geometry = damage_box;
}
static wf::pointf_t get_center(wf::geometry_t g)
{
return {g.x + g.width / 2.0, g.y + g.height / 2.0};
}
void wf_blur_base::render(wf::gles_texture_t src_tex, wlr_box src_box, const wf::region_t& damage,
const wf::render_target_t& background_source_fb, const wf::render_target_t& target_fb)
{
wf::gles_texture_t blurred_background = wf::gles_texture_t::from_aux(fb[0]);
wf::gles::ensure_render_buffer_fb_id(target_fb);
blend_program.use(src_tex.type);
/* Use shader and enable vertex and texcoord data */
static const float vertex_data_uv[] = {
0.0f, 0.0f,
1.0f, 0.0f,
1.0f, 1.0f,
0.0f, 1.0f,
};
const float vertex_data_pos[] = {
1.0f * src_box.x, 1.0f * src_box.y + src_box.height,
1.0f * src_box.x + src_box.width, 1.0f * src_box.y + src_box.height,
1.0f * src_box.x + src_box.width, 1.0f * src_box.y,
1.0f * src_box.x, 1.0f * src_box.y,
};
blend_program.attrib_pointer("position", 2, 0, vertex_data_pos);
blend_program.attrib_pointer("uv_in", 2, 0, vertex_data_uv);
// The blurred background is contained in a framebuffer with dimensions equal to the projected damage.
// We need to calculate a mapping between the uv coordinates of the view (which may be bigger than the
// damage) and the uv coordinates used for sampling the blurred background.
// How it works:
// 1. translate UV coordinates to (-0.5, -0.5) ~ (0.5, 0.5) range
// 2. apply inverse framebuffer transform (needed because on rotated outputs, the framebuffer box includes
// rotation).
// 3. Scale to match the view size
// 4. Translate to match the view
auto view_box = background_source_fb.framebuffer_box_from_geometry_box(src_box); // Projected view
auto blurred_box = prepared_geometry;
// prepared_geometry is the projected damage bounding box
glm::mat4 fb_fix = wf::gles::output_transform(target_fb);
const auto scale_x = 1.0 * view_box.width / blurred_box.width;
const auto scale_y = 1.0 * view_box.height / blurred_box.height;
glm::mat4 scale = glm::scale(glm::mat4(1.0), glm::vec3{scale_x, scale_y, 1.0});
const wf::pointf_t center_view = get_center(view_box);
const wf::pointf_t center_prepared = get_center(blurred_box);
const auto translate_x = 1.0 * (center_view.x - center_prepared.x) / view_box.width;
const auto translate_y = 1.0 * (center_view.y - center_prepared.y) / view_box.height;
glm::mat4 fix_center = glm::translate(glm::mat4(1.0), glm::vec3{translate_x, translate_y, 0.0});
glm::mat4 composite = scale * fix_center * fb_fix;
blend_program.uniformMatrix4f("background_uv_matrix", composite);
/* Blend blurred background with window texture src_tex */
blend_program.uniformMatrix4f("mvp", wf::gles::render_target_orthographic_projection(target_fb));
/* XXX: core should give us the number of texture units used */
blend_program.uniform1i("bg_texture", 1);
blend_program.uniform1f("sat", saturation_opt);
blend_program.set_active_texture(src_tex);
GL_CALL(glActiveTexture(GL_TEXTURE0 + 1));
GL_CALL(glBindTexture(GL_TEXTURE_2D, blurred_background.tex_id));
/* Render it to target_fb */
wf::gles::bind_render_buffer(target_fb);
for (const auto& box : damage)
{
wf::gles::render_target_logic_scissor(target_fb, wlr_box_from_pixman_box(box));
GL_CALL(glDrawArrays(GL_TRIANGLE_FAN, 0, 4));
}
/*
* Disable stuff
* GL_CALL(glActiveTexture(GL_TEXTURE0 + 1));
*/
GL_CALL(glBindTexture(GL_TEXTURE_2D, 0));
GL_CALL(glActiveTexture(GL_TEXTURE0));
GL_CALL(glBindTexture(GL_TEXTURE_2D, 0));
blend_program.deactivate();
}
std::unique_ptr<wf_blur_base> create_blur_from_name(std::string algorithm_name)
{
if (algorithm_name == "box")
{
return create_box_blur();
}
if (algorithm_name == "bokeh")
{
return create_bokeh_blur();
}
if (algorithm_name == "kawase")
{
return create_kawase_blur();
}
if (algorithm_name == "gaussian")
{
return create_gaussian_blur();
}
LOGE("Unrecognized blur algorithm %s. Using default kawase blur.", algorithm_name.c_str());
return create_kawase_blur();
}
|