mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-18 06:25:13 +02:00
15 lines
337 B
C
Vendored
15 lines
337 B
C
Vendored
/*
|
|
* Copyright (C) 2021 Kovid Goyal <kovid at kovidgoyal.net>
|
|
*
|
|
* Distributed under terms of the GPL3 license.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "internal.h"
|
|
|
|
void free_all_csd_resources(_GLFWwindow *window);
|
|
void free_csd_surfaces(_GLFWwindow *window);
|
|
void resize_csd(_GLFWwindow *window);
|
|
bool ensure_csd_resources(_GLFWwindow *window);
|