2018-09-23 05:48:44 +00:00
|
|
|
/*
|
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
2019-02-22 11:16:14 +00:00
|
|
|
Copyright (C) 2017-2019 Geoffrey McRae <geoff@hostfission.com>
|
2018-09-23 05:48:44 +00:00
|
|
|
https://looking-glass.hostfission.com
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2018-12-12 05:39:04 +00:00
|
|
|
#include "shader.h"
|
2019-10-01 13:17:20 +00:00
|
|
|
#include "common/framebuffer.h"
|
2018-09-23 05:48:44 +00:00
|
|
|
|
|
|
|
#include <GL/gl.h>
|
|
|
|
|
|
|
|
typedef struct EGL_Texture EGL_Texture;
|
|
|
|
|
2018-09-23 10:45:20 +00:00
|
|
|
enum EGL_PixelFormat
|
|
|
|
{
|
|
|
|
EGL_PF_RGBA,
|
|
|
|
EGL_PF_BGRA,
|
2018-12-04 10:23:28 +00:00
|
|
|
EGL_PF_RGBA10,
|
2018-09-23 10:45:20 +00:00
|
|
|
EGL_PF_YUV420
|
|
|
|
};
|
|
|
|
|
2019-06-12 12:36:00 +00:00
|
|
|
enum EGL_TexStatus
|
|
|
|
{
|
|
|
|
EGL_TEX_STATUS_NOTREADY,
|
|
|
|
EGL_TEX_STATUS_OK,
|
|
|
|
EGL_TEX_STATUS_ERROR
|
|
|
|
};
|
|
|
|
|
2018-09-23 05:48:44 +00:00
|
|
|
bool egl_texture_init(EGL_Texture ** tex);
|
|
|
|
void egl_texture_free(EGL_Texture ** tex);
|
|
|
|
|
2019-06-12 12:36:00 +00:00
|
|
|
bool egl_texture_setup (EGL_Texture * texture, enum EGL_PixelFormat pixfmt, size_t width, size_t height, size_t stride, bool streaming);
|
|
|
|
bool egl_texture_update (EGL_Texture * texture, const uint8_t * buffer);
|
2019-10-01 13:17:20 +00:00
|
|
|
bool egl_texture_update_from_frame(EGL_Texture * texture, const FrameBuffer frame);
|
2019-06-12 12:36:00 +00:00
|
|
|
enum EGL_TexStatus egl_texture_process(EGL_Texture * texture);
|
|
|
|
enum EGL_TexStatus egl_texture_bind (EGL_Texture * texture);
|
|
|
|
int egl_texture_count (EGL_Texture * texture);
|