2021-06-06 01:26:18 +00:00
|
|
|
/**
|
|
|
|
* Looking Glass
|
2022-01-05 08:42:46 +00:00
|
|
|
* Copyright © 2017-2022 The Looking Glass Authors
|
2021-06-06 01:26:18 +00:00
|
|
|
* https://looking-glass.io
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc., 59
|
|
|
|
* Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
2018-12-12 07:57:31 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2019-03-28 00:02:36 +00:00
|
|
|
|
2021-08-09 04:08:10 +00:00
|
|
|
#include "egl.h"
|
2019-03-28 00:02:36 +00:00
|
|
|
#include "interface/renderer.h"
|
2018-12-12 07:57:31 +00:00
|
|
|
|
|
|
|
typedef struct EGL_Cursor EGL_Cursor;
|
|
|
|
|
2021-05-11 20:49:39 +00:00
|
|
|
struct CursorState {
|
|
|
|
bool visible;
|
|
|
|
struct Rect rect;
|
|
|
|
};
|
|
|
|
|
2021-08-11 08:53:36 +00:00
|
|
|
bool egl_cursorInit(EGL_Cursor ** cursor);
|
2021-08-08 07:16:10 +00:00
|
|
|
void egl_cursorFree(EGL_Cursor ** cursor);
|
2018-12-12 07:57:31 +00:00
|
|
|
|
2021-08-08 07:16:10 +00:00
|
|
|
bool egl_cursorSetShape(
|
2021-01-15 01:40:59 +00:00
|
|
|
EGL_Cursor * cursor,
|
|
|
|
const LG_RendererCursor type,
|
|
|
|
const int width,
|
|
|
|
const int height,
|
|
|
|
const int stride,
|
|
|
|
const uint8_t * data);
|
|
|
|
|
2021-08-08 07:16:10 +00:00
|
|
|
void egl_cursorSetSize(EGL_Cursor * cursor, const float x, const float y);
|
2021-01-18 15:44:56 +00:00
|
|
|
|
2021-10-22 12:19:56 +00:00
|
|
|
void egl_cursorSetScale(EGL_Cursor * cursor, const float scale);
|
|
|
|
|
2021-08-08 07:16:10 +00:00
|
|
|
void egl_cursorSetState(EGL_Cursor * cursor, const bool visible,
|
2021-10-22 12:19:56 +00:00
|
|
|
const float x, const float y, const float hx, const float hy);
|
2021-01-18 15:44:56 +00:00
|
|
|
|
2021-08-08 07:16:10 +00:00
|
|
|
struct CursorState egl_cursorRender(EGL_Cursor * cursor,
|
|
|
|
LG_RendererRotate rotate, int width, int height);
|