summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorWill McKinnon <[email protected]>2023-04-24 00:53:55 -0400
committerWill McKinnon <[email protected]>2023-04-24 00:53:55 -0400
commit3d1b294cc078c96120a4fb44a885a0eebe07ba96 (patch)
treeb61ff64b5c674e1d2d1ea1d6d3e7879ed85dd14e /include
parentb61041980ff06f6c2bfdee1a1cf21afd6044ae28 (diff)
removed width and height parameters from fx_framebuffer_bind()
Diffstat (limited to 'include')
-rw-r--r--include/sway/desktop/fx_renderer/fx_framebuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/desktop/fx_renderer/fx_framebuffer.h b/include/sway/desktop/fx_renderer/fx_framebuffer.h
index a7a9cd21..289b4d87 100644
--- a/include/sway/desktop/fx_renderer/fx_framebuffer.h
+++ b/include/sway/desktop/fx_renderer/fx_framebuffer.h
@@ -12,7 +12,7 @@ struct fx_framebuffer {
GLuint fb;
};
-void fx_framebuffer_bind(struct fx_framebuffer *buffer, GLsizei width, GLsizei height);
+void fx_framebuffer_bind(struct fx_framebuffer *buffer);
void fx_framebuffer_create(struct fx_framebuffer *buffer, int width, int height, bool bind);