aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render/gles2/texture.c1
-rw-r--r--types/wlr_surface.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/render/gles2/texture.c b/render/gles2/texture.c
index 5126ec23..7a030f25 100644
--- a/render/gles2/texture.c
+++ b/render/gles2/texture.c
@@ -107,7 +107,6 @@ static bool gles2_texture_update_shm(struct wlr_texture_state *texture,
GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, pitch));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, x));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, y));
- wlr_log(L_DEBUG, "%dx%d@%d,%d", width, height, x, y);
GL_CALL(glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, width, height,
fmt->gl_format, fmt->gl_type, pixels));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, 0));
diff --git a/types/wlr_surface.c b/types/wlr_surface.c
index 06495703..7891a55c 100644
--- a/types/wlr_surface.c
+++ b/types/wlr_surface.c
@@ -135,7 +135,6 @@ void wlr_surface_flush_damage(struct wlr_surface *surface) {
uint32_t format = wl_shm_buffer_get_format(buffer);
for (int i = 0; i < n; ++i) {
pixman_box32_t rect = rects[i];
- wlr_log(L_DEBUG, "%d,%d:%d,%d", rect.x1, rect.y1, rect.x2, rect.y2);
if (!wlr_texture_update_shm(surface->texture, format,
rect.x1, rect.y1,
rect.x2 - rect.x1,