2017-12-14 06:48:08 +00:00
|
|
|
/*
|
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
|
|
|
Copyright (C) 2017 Geoffrey McRae <geoff@hostfission.com>
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2017-12-05 09:33:05 +00:00
|
|
|
#include "lg-renderer.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2017-12-10 14:31:52 +00:00
|
|
|
#include <unistd.h>
|
2018-05-15 03:23:44 +00:00
|
|
|
#include <malloc.h>
|
2017-12-10 14:31:52 +00:00
|
|
|
|
2017-12-14 05:09:39 +00:00
|
|
|
#include <SDL2/SDL_ttf.h>
|
2017-12-05 09:33:05 +00:00
|
|
|
|
|
|
|
#define GL_GLEXT_PROTOTYPES
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#include <GL/glu.h>
|
2017-12-10 16:02:45 +00:00
|
|
|
#include <GL/glx.h>
|
2017-12-05 09:33:05 +00:00
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include "memcpySSE.h"
|
2017-12-10 14:31:52 +00:00
|
|
|
#include "utils.h"
|
2017-12-29 11:48:21 +00:00
|
|
|
#include "lg-decoders.h"
|
2017-12-10 14:31:52 +00:00
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
#define BUFFER_COUNT 2
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
#define FPS_TEXTURE 0
|
|
|
|
#define MOUSE_TEXTURE 1
|
|
|
|
#define TEXTURE_COUNT 2
|
2017-12-12 15:22:47 +00:00
|
|
|
|
2017-12-10 16:02:45 +00:00
|
|
|
static PFNGLXGETVIDEOSYNCSGIPROC glXGetVideoSyncSGI = NULL;
|
|
|
|
static PFNGLXWAITVIDEOSYNCSGIPROC glXWaitVideoSyncSGI = NULL;
|
|
|
|
|
2017-12-17 11:21:59 +00:00
|
|
|
struct Options
|
|
|
|
{
|
|
|
|
bool mipmap;
|
|
|
|
bool vsync;
|
2017-12-19 00:02:35 +00:00
|
|
|
bool preventBuffer;
|
2017-12-17 11:21:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct Options defaultOptions =
|
|
|
|
{
|
2017-12-19 00:02:35 +00:00
|
|
|
.mipmap = true,
|
|
|
|
.vsync = true,
|
2018-05-14 23:54:24 +00:00
|
|
|
.preventBuffer = false,
|
2017-12-17 11:21:59 +00:00
|
|
|
};
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
struct Inst
|
2017-12-05 09:33:05 +00:00
|
|
|
{
|
2017-12-10 14:31:52 +00:00
|
|
|
LG_RendererParams params;
|
2017-12-17 11:21:59 +00:00
|
|
|
struct Options opt;
|
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
bool amdPinnedMemSupport;
|
2017-12-14 06:42:16 +00:00
|
|
|
bool configured;
|
2017-12-19 13:53:45 +00:00
|
|
|
bool reconfigure;
|
2017-12-10 14:31:52 +00:00
|
|
|
SDL_GLContext glContext;
|
2017-12-14 06:42:16 +00:00
|
|
|
bool doneInfo;
|
|
|
|
|
|
|
|
SDL_Point window;
|
2017-12-10 14:31:52 +00:00
|
|
|
bool resizeWindow;
|
2017-12-12 15:22:47 +00:00
|
|
|
bool frameUpdate;
|
2017-12-10 14:31:52 +00:00
|
|
|
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_Lock formatLock;
|
2017-12-05 09:33:05 +00:00
|
|
|
LG_RendererFormat format;
|
|
|
|
GLuint intFormat;
|
|
|
|
GLuint vboFormat;
|
|
|
|
size_t texSize;
|
2017-12-29 11:48:21 +00:00
|
|
|
const LG_Decoder* decoder;
|
|
|
|
void * decoderData;
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-10 14:31:52 +00:00
|
|
|
uint64_t drawStart;
|
2017-12-05 09:33:05 +00:00
|
|
|
bool hasBuffers;
|
2017-12-30 13:27:26 +00:00
|
|
|
GLuint vboID[BUFFER_COUNT];
|
2017-12-13 19:54:53 +00:00
|
|
|
uint8_t * texPixels[BUFFER_COUNT];
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_Lock syncLock;
|
2017-12-30 13:27:26 +00:00
|
|
|
int texIndex;
|
2017-12-10 16:47:07 +00:00
|
|
|
int texList;
|
|
|
|
int fpsList;
|
2017-12-13 02:10:32 +00:00
|
|
|
int mouseList;
|
2017-12-10 16:47:07 +00:00
|
|
|
LG_RendererRect destRect;
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
bool hasTextures, hasFrames;
|
|
|
|
GLuint frames[BUFFER_COUNT];
|
2018-05-15 03:23:44 +00:00
|
|
|
GLsync fences[BUFFER_COUNT];
|
2017-12-30 13:27:26 +00:00
|
|
|
void * decoderFrames[BUFFER_COUNT];
|
2017-12-12 15:22:47 +00:00
|
|
|
GLuint textures[TEXTURE_COUNT];
|
2017-12-10 14:31:52 +00:00
|
|
|
|
2017-12-10 16:02:45 +00:00
|
|
|
uint gpuFrameCount;
|
2017-12-10 14:31:52 +00:00
|
|
|
bool fpsTexture;
|
|
|
|
uint64_t lastFrameTime;
|
|
|
|
uint64_t renderTime;
|
|
|
|
uint64_t frameCount;
|
2017-12-19 01:17:50 +00:00
|
|
|
uint64_t renderCount;
|
2017-12-10 14:31:52 +00:00
|
|
|
SDL_Rect fpsRect;
|
2017-12-12 15:22:47 +00:00
|
|
|
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_Lock mouseLock;
|
2017-12-19 13:53:45 +00:00
|
|
|
LG_RendererCursor mouseCursor;
|
|
|
|
int mouseWidth;
|
|
|
|
int mouseHeight;
|
|
|
|
int mousePitch;
|
|
|
|
uint8_t * mouseData;
|
|
|
|
size_t mouseDataSize;
|
|
|
|
|
2017-12-13 17:18:30 +00:00
|
|
|
bool mouseUpdate;
|
2017-12-15 05:53:26 +00:00
|
|
|
bool newShape;
|
2017-12-13 17:18:30 +00:00
|
|
|
uint64_t lastMouseDraw;
|
2017-12-12 17:49:43 +00:00
|
|
|
LG_RendererCursor mouseType;
|
2017-12-12 15:22:47 +00:00
|
|
|
bool mouseVisible;
|
2017-12-12 16:51:25 +00:00
|
|
|
SDL_Rect mousePos;
|
2017-12-05 09:33:05 +00:00
|
|
|
};
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
static bool _check_gl_error(unsigned int line, const char * name);
|
|
|
|
#define check_gl_error(name) _check_gl_error(__LINE__, name)
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
static void deconfigure(struct Inst * this);
|
|
|
|
static bool configure(struct Inst * this, SDL_Window *window);
|
|
|
|
static void update_mouse_shape(struct Inst * this, bool * newShape);
|
2017-12-23 06:37:56 +00:00
|
|
|
static bool draw_frame(struct Inst * this);
|
2017-12-19 13:53:45 +00:00
|
|
|
static void draw_mouse(struct Inst * this);
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
const char * opengl_get_name()
|
2017-12-05 09:33:05 +00:00
|
|
|
{
|
|
|
|
return "OpenGL";
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
bool opengl_create(void ** opaque, const LG_RendererParams params)
|
2017-12-05 09:33:05 +00:00
|
|
|
{
|
|
|
|
// create our local storage
|
2017-12-19 13:53:45 +00:00
|
|
|
*opaque = malloc(sizeof(struct Inst));
|
2017-12-05 09:33:05 +00:00
|
|
|
if (!*opaque)
|
|
|
|
{
|
2017-12-19 13:53:45 +00:00
|
|
|
DEBUG_INFO("Failed to allocate %lu bytes", sizeof(struct Inst));
|
2017-12-05 09:33:05 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-12-19 13:53:45 +00:00
|
|
|
memset(*opaque, 0, sizeof(struct Inst));
|
2017-12-14 06:42:16 +00:00
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
struct Inst * this = (struct Inst *)*opaque;
|
2017-12-17 11:21:59 +00:00
|
|
|
memcpy(&this->params, ¶ms , sizeof(LG_RendererParams));
|
|
|
|
memcpy(&this->opt , &defaultOptions, sizeof(struct Options ));
|
|
|
|
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_LOCK_INIT(this->formatLock);
|
|
|
|
LG_LOCK_INIT(this->syncLock );
|
|
|
|
LG_LOCK_INIT(this->mouseLock );
|
|
|
|
|
2017-12-17 11:21:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
bool opengl_initialize(void * opaque, Uint32 * sdlFlags)
|
2017-12-17 11:21:59 +00:00
|
|
|
{
|
2017-12-19 13:53:45 +00:00
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
2017-12-17 11:21:59 +00:00
|
|
|
if (!this)
|
|
|
|
return false;
|
2017-12-10 14:31:52 +00:00
|
|
|
|
2017-12-10 16:02:45 +00:00
|
|
|
if (!glXGetVideoSyncSGI)
|
2017-12-10 14:31:52 +00:00
|
|
|
{
|
2017-12-10 16:02:45 +00:00
|
|
|
glXGetVideoSyncSGI = (PFNGLXGETVIDEOSYNCSGIPROC )glXGetProcAddress((const GLubyte *)"glXGetVideoSyncSGI" );
|
|
|
|
glXWaitVideoSyncSGI = (PFNGLXWAITVIDEOSYNCSGIPROC)glXGetProcAddress((const GLubyte *)"glXWaitVideoSyncSGI");
|
|
|
|
|
2017-12-10 20:14:43 +00:00
|
|
|
if (!glXGetVideoSyncSGI || !glXWaitVideoSyncSGI)
|
2017-12-10 16:02:45 +00:00
|
|
|
{
|
|
|
|
glXGetVideoSyncSGI = NULL;
|
|
|
|
DEBUG_ERROR("Failed to get proc addresses");
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-10 14:31:52 +00:00
|
|
|
}
|
2017-12-10 16:02:45 +00:00
|
|
|
|
2017-12-14 06:42:16 +00:00
|
|
|
*sdlFlags = SDL_WINDOW_OPENGL;
|
2017-12-15 05:21:38 +00:00
|
|
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
2017-12-14 06:42:16 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
void opengl_deinitialize(void * opaque)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
|
|
|
return;
|
|
|
|
|
|
|
|
deconfigure(this);
|
|
|
|
if (this->mouseData)
|
|
|
|
free(this->mouseData);
|
|
|
|
|
2017-12-20 14:23:25 +00:00
|
|
|
LG_LOCK_FREE(this->formatLock);
|
|
|
|
LG_LOCK_FREE(this->syncLock );
|
|
|
|
LG_LOCK_FREE(this->mouseLock );
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void opengl_on_resize(void * opaque, const int width, const int height, const LG_RendererRect destRect)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this->window.x = width;
|
|
|
|
this->window.y = height;
|
|
|
|
memcpy(&this->destRect, &destRect, sizeof(LG_RendererRect));
|
|
|
|
|
|
|
|
this->resizeWindow = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool opengl_on_mouse_shape(void * opaque, const LG_RendererCursor cursor, const int width, const int height, const int pitch, const uint8_t * data)
|
2017-12-14 06:42:16 +00:00
|
|
|
{
|
2017-12-19 13:53:45 +00:00
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
2017-12-14 06:42:16 +00:00
|
|
|
if (!this)
|
|
|
|
return false;
|
|
|
|
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_LOCK(this->mouseLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
this->mouseCursor = cursor;
|
|
|
|
this->mouseWidth = width;
|
|
|
|
this->mouseHeight = height;
|
|
|
|
this->mousePitch = pitch;
|
|
|
|
|
|
|
|
const size_t size = height * pitch;
|
|
|
|
if (size > this->mouseDataSize)
|
2017-12-14 06:42:16 +00:00
|
|
|
{
|
2017-12-19 13:53:45 +00:00
|
|
|
if (this->mouseData)
|
|
|
|
free(this->mouseData);
|
|
|
|
this->mouseData = (uint8_t *)malloc(size);
|
|
|
|
this->mouseDataSize = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(this->mouseData, data, size);
|
|
|
|
this->newShape = true;
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_UNLOCK(this->mouseLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool opengl_on_mouse_event(void * opaque, const bool visible, const int x, const int y)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
2017-12-14 06:42:16 +00:00
|
|
|
return false;
|
2017-12-19 13:53:45 +00:00
|
|
|
|
|
|
|
if (this->mousePos.x == x && this->mousePos.y == y && this->mouseVisible == visible)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
this->mouseVisible = visible;
|
|
|
|
this->mousePos.x = x;
|
|
|
|
this->mousePos.y = y;
|
|
|
|
this->mouseUpdate = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool opengl_on_frame_event(void * opaque, const LG_RendererFormat format, const uint8_t * data)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Invalid opaque pointer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_LOCK(this->formatLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
if (this->reconfigure)
|
|
|
|
{
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
return true;
|
2017-12-14 06:42:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-29 10:20:51 +00:00
|
|
|
if (!this->configured ||
|
|
|
|
this->format.comp != format.comp ||
|
|
|
|
this->format.width != format.width ||
|
|
|
|
this->format.height != format.height ||
|
|
|
|
this->format.stride != format.stride ||
|
|
|
|
this->format.bpp != format.bpp
|
|
|
|
)
|
2017-12-19 13:53:45 +00:00
|
|
|
{
|
|
|
|
memcpy(&this->format, &format, sizeof(LG_RendererFormat));
|
|
|
|
this->reconfigure = true;
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_LOCK(this->syncLock);
|
2017-12-30 13:27:26 +00:00
|
|
|
if (!this->decoder->decode(this->decoderData, data, format.pitch))
|
2017-12-29 11:48:21 +00:00
|
|
|
{
|
|
|
|
DEBUG_ERROR("decode returned failure");
|
|
|
|
LG_UNLOCK(this->syncLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-19 13:53:45 +00:00
|
|
|
this->frameUpdate = true;
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_UNLOCK(this->syncLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
|
|
|
|
++this->frameCount;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool opengl_render(void * opaque, SDL_Window * window)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!configure(this, window))
|
2018-01-03 22:25:42 +00:00
|
|
|
return false;
|
2017-12-19 13:53:45 +00:00
|
|
|
|
|
|
|
if (this->resizeWindow)
|
|
|
|
{
|
|
|
|
// setup the projection matrix
|
|
|
|
glViewport(0, 0, this->window.x, this->window.y);
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
glLoadIdentity();
|
|
|
|
gluOrtho2D(0, this->window.x, this->window.y, 0);
|
|
|
|
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
glLoadIdentity();
|
|
|
|
glTranslatef(this->destRect.x, this->destRect.y, 0.0f);
|
|
|
|
glScalef(
|
|
|
|
(float)this->destRect.w / (float)this->format.width,
|
|
|
|
(float)this->destRect.h / (float)this->format.height,
|
|
|
|
1.0f
|
|
|
|
);
|
|
|
|
|
|
|
|
this->resizeWindow = false;
|
|
|
|
}
|
|
|
|
|
2017-12-20 14:17:45 +00:00
|
|
|
if (this->params.showFPS && this->renderTime > 1e9)
|
|
|
|
{
|
|
|
|
char str[128];
|
|
|
|
const float avgFPS = 1000.0f / (((float)this->renderTime / this->frameCount ) / 1e6f);
|
|
|
|
const float renderFPS = 1000.0f / (((float)this->renderTime / this->renderCount) / 1e6f);
|
|
|
|
snprintf(str, sizeof(str), "UPS: %8.4f, FPS: %8.4f", avgFPS, renderFPS);
|
|
|
|
SDL_Color color = {0xff, 0xff, 0xff};
|
|
|
|
SDL_Surface *textSurface = NULL;
|
|
|
|
if (!(textSurface = TTF_RenderText_Blended(this->params.font, str, color)))
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to render text");
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
glBindTexture(GL_TEXTURE_2D , this->textures[FPS_TEXTURE]);
|
|
|
|
glPixelStorei(GL_UNPACK_ALIGNMENT , 4 );
|
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH, textSurface->w );
|
|
|
|
glTexImage2D(
|
|
|
|
GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
textSurface->format->BytesPerPixel,
|
|
|
|
textSurface->w,
|
|
|
|
textSurface->h,
|
|
|
|
0,
|
|
|
|
GL_BGRA,
|
|
|
|
GL_UNSIGNED_BYTE,
|
|
|
|
textSurface->pixels
|
|
|
|
);
|
|
|
|
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
|
|
|
|
this->fpsRect.x = 5;
|
|
|
|
this->fpsRect.y = 5;
|
|
|
|
this->fpsRect.w = textSurface->w;
|
|
|
|
this->fpsRect.h = textSurface->h;
|
|
|
|
|
|
|
|
SDL_FreeSurface(textSurface);
|
|
|
|
|
|
|
|
this->renderTime = 0;
|
|
|
|
this->frameCount = 0;
|
|
|
|
this->renderCount = 0;
|
|
|
|
this->fpsTexture = true;
|
|
|
|
|
|
|
|
glNewList(this->fpsList, GL_COMPILE);
|
2017-12-20 19:50:57 +00:00
|
|
|
glPushMatrix();
|
|
|
|
glLoadIdentity();
|
|
|
|
|
2017-12-20 14:17:45 +00:00
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glDisable(GL_TEXTURE_2D);
|
|
|
|
glColor4f(0.0f, 0.0f, 1.0f, 0.5f);
|
|
|
|
glBegin(GL_TRIANGLE_STRIP);
|
|
|
|
glVertex2i(this->fpsRect.x , this->fpsRect.y );
|
|
|
|
glVertex2i(this->fpsRect.x + this->fpsRect.w, this->fpsRect.y );
|
|
|
|
glVertex2i(this->fpsRect.x , this->fpsRect.y + this->fpsRect.h);
|
|
|
|
glVertex2i(this->fpsRect.x + this->fpsRect.w, this->fpsRect.y + this->fpsRect.h);
|
|
|
|
glEnd();
|
|
|
|
glEnable(GL_TEXTURE_2D);
|
|
|
|
|
|
|
|
glBindTexture(GL_TEXTURE_2D, this->textures[FPS_TEXTURE]);
|
|
|
|
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
glBegin(GL_TRIANGLE_STRIP);
|
|
|
|
glTexCoord2f(0.0f , 0.0f); glVertex2i(this->fpsRect.x , this->fpsRect.y );
|
|
|
|
glTexCoord2f(1.0f , 0.0f); glVertex2i(this->fpsRect.x + this->fpsRect.w, this->fpsRect.y );
|
|
|
|
glTexCoord2f(0.0f , 1.0f); glVertex2i(this->fpsRect.x , this->fpsRect.y + this->fpsRect.h);
|
|
|
|
glTexCoord2f(1.0f, 1.0f); glVertex2i(this->fpsRect.x + this->fpsRect.w, this->fpsRect.y + this->fpsRect.h);
|
|
|
|
glEnd();
|
|
|
|
glDisable(GL_BLEND);
|
2017-12-20 19:50:57 +00:00
|
|
|
|
|
|
|
glPopMatrix();
|
2017-12-20 14:17:45 +00:00
|
|
|
glEndList();
|
|
|
|
}
|
|
|
|
|
2017-12-23 06:37:56 +00:00
|
|
|
if (!draw_frame(this))
|
2017-12-19 13:53:45 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
bool newShape;
|
|
|
|
update_mouse_shape(this, &newShape);
|
|
|
|
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
|
|
|
glCallList(this->texList + this->texIndex);
|
|
|
|
draw_mouse(this);
|
|
|
|
if (this->fpsTexture)
|
|
|
|
glCallList(this->fpsList);
|
|
|
|
|
|
|
|
if (this->opt.preventBuffer)
|
|
|
|
{
|
|
|
|
unsigned int before, after;
|
|
|
|
glXGetVideoSyncSGI(&before);
|
|
|
|
SDL_GL_SwapWindow(window);
|
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
// wait for the swap to happen to ensure we dont buffer frames
|
2017-12-19 13:53:45 +00:00
|
|
|
glXGetVideoSyncSGI(&after);
|
|
|
|
if (before == after)
|
|
|
|
glXWaitVideoSyncSGI(1, 0, &before);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
SDL_GL_SwapWindow(window);
|
|
|
|
|
|
|
|
const uint64_t t = nanotime();
|
|
|
|
this->renderTime += t - this->lastFrameTime;
|
|
|
|
this->lastFrameTime = t;
|
|
|
|
++this->renderCount;
|
|
|
|
|
|
|
|
this->mouseUpdate = false;
|
|
|
|
this->lastMouseDraw = t;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_opt_mipmap(void * opaque, const char *value)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this->opt.mipmap = LG_RendererValueToBool(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_opt_vsync(void * opaque, const char *value)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this->opt.vsync = LG_RendererValueToBool(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_opt_prevent_buffer(void * opaque, const char *value)
|
|
|
|
{
|
|
|
|
struct Inst * this = (struct Inst *)opaque;
|
|
|
|
if (!this)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this->opt.preventBuffer = LG_RendererValueToBool(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static LG_RendererOpt opengl_options[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
.name = "mipmap",
|
|
|
|
.desc = "Enable or disable mipmapping [default: enabled]",
|
|
|
|
.validator = LG_RendererValidatorBool,
|
|
|
|
.handler = handle_opt_mipmap
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "vsync",
|
|
|
|
.desc ="Enable or disable vsync [default: enabled]",
|
|
|
|
.validator = LG_RendererValidatorBool,
|
|
|
|
.handler = handle_opt_vsync
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "preventBuffer",
|
2018-05-14 23:54:24 +00:00
|
|
|
.desc = "Prevent the driver from buffering frames [default: disabled]",
|
2017-12-19 13:53:45 +00:00
|
|
|
.validator = LG_RendererValidatorBool,
|
|
|
|
.handler = handle_opt_prevent_buffer
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const LG_Renderer LGR_OpenGL =
|
|
|
|
{
|
|
|
|
.get_name = opengl_get_name,
|
|
|
|
.options = opengl_options,
|
|
|
|
.option_count = LGR_OPTION_COUNT(opengl_options),
|
|
|
|
.create = opengl_create,
|
|
|
|
.initialize = opengl_initialize,
|
|
|
|
.deinitialize = opengl_deinitialize,
|
|
|
|
.on_resize = opengl_on_resize,
|
|
|
|
.on_mouse_shape = opengl_on_mouse_shape,
|
|
|
|
.on_mouse_event = opengl_on_mouse_event,
|
|
|
|
.on_frame_event = opengl_on_frame_event,
|
|
|
|
.render = opengl_render
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool _check_gl_error(unsigned int line, const char * name)
|
|
|
|
{
|
|
|
|
GLenum error = glGetError();
|
|
|
|
if (error == GL_NO_ERROR)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const GLubyte * errStr = gluErrorString(error);
|
|
|
|
DEBUG_ERROR("%d: %s = %d (%s)", line, name, error, errStr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool configure(struct Inst * this, SDL_Window *window)
|
|
|
|
{
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_LOCK(this->formatLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
if (!this->reconfigure)
|
|
|
|
{
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
return this->configured;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->configured)
|
|
|
|
deconfigure(this);
|
|
|
|
|
2017-12-14 06:42:16 +00:00
|
|
|
this->glContext = SDL_GL_CreateContext(window);
|
|
|
|
if (!this->glContext)
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to create the OpenGL context");
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-14 06:42:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->doneInfo)
|
|
|
|
{
|
|
|
|
DEBUG_INFO("Vendor : %s", glGetString(GL_VENDOR ));
|
|
|
|
DEBUG_INFO("Renderer: %s", glGetString(GL_RENDERER));
|
|
|
|
DEBUG_INFO("Version : %s", glGetString(GL_VERSION ));
|
2018-05-15 03:23:44 +00:00
|
|
|
|
|
|
|
GLint n;
|
|
|
|
glGetIntegerv(GL_NUM_EXTENSIONS, &n);
|
|
|
|
for(GLint i = 0; i < n; ++i)
|
|
|
|
{
|
|
|
|
const GLubyte *ext = glGetStringi(GL_EXTENSIONS, i);
|
|
|
|
this->amdPinnedMemSupport = (strcmp((const char *)ext, "GL_AMD_pinned_memory") == 0);
|
|
|
|
if (this->amdPinnedMemSupport)
|
|
|
|
{
|
|
|
|
DEBUG_INFO("Using GL_AMD_pinned_memory");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 06:42:16 +00:00
|
|
|
this->doneInfo = true;
|
|
|
|
}
|
|
|
|
|
2017-12-17 12:24:58 +00:00
|
|
|
SDL_GL_SetSwapInterval(this->opt.vsync ? 1 : 0);
|
2017-12-10 14:31:52 +00:00
|
|
|
|
|
|
|
// check if the GPU supports GL_ARB_buffer_storage first
|
|
|
|
// there is no advantage to this renderer if it is not present.
|
|
|
|
const GLubyte * extensions = glGetString(GL_EXTENSIONS);
|
|
|
|
if (!gluCheckExtension((const GLubyte *)"GL_ARB_buffer_storage", extensions))
|
|
|
|
{
|
|
|
|
DEBUG_INFO("The GPU doesn't support GL_ARB_buffer_storage");
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-10 14:31:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-29 10:20:51 +00:00
|
|
|
switch(this->format.comp)
|
2017-12-05 09:33:05 +00:00
|
|
|
{
|
2017-12-29 10:20:51 +00:00
|
|
|
case LG_COMPRESSION_NONE:
|
2017-12-29 11:48:21 +00:00
|
|
|
this->decoder = &LGD_NULL;
|
2017-12-05 09:33:05 +00:00
|
|
|
break;
|
|
|
|
|
2017-12-29 10:20:51 +00:00
|
|
|
case LG_COMPRESSION_H264:
|
2017-12-29 11:48:21 +00:00
|
|
|
this->decoder = &LGD_H264;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DEBUG_ERROR("Unknown/unsupported compression type");
|
2017-12-29 10:20:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-29 11:48:21 +00:00
|
|
|
DEBUG_INFO("Using decoder: %s", this->decoder->name);
|
|
|
|
|
|
|
|
if (!this->decoder->create(&this->decoderData))
|
2017-12-29 10:20:51 +00:00
|
|
|
{
|
2017-12-29 11:48:21 +00:00
|
|
|
DEBUG_ERROR("Failed to create the decoder");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->decoder->initialize(
|
|
|
|
this->decoderData,
|
2017-12-30 13:27:26 +00:00
|
|
|
this->format,
|
|
|
|
window))
|
2017-12-29 11:48:21 +00:00
|
|
|
{
|
|
|
|
DEBUG_ERROR("Failed to initialize decoder");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(this->decoder->get_out_format(this->decoderData))
|
|
|
|
{
|
|
|
|
case LG_OUTPUT_BGRA:
|
2017-12-05 09:33:05 +00:00
|
|
|
this->intFormat = GL_RGBA8;
|
|
|
|
this->vboFormat = GL_BGRA;
|
|
|
|
break;
|
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
case LG_OUTPUT_YUV420:
|
|
|
|
// fixme
|
|
|
|
this->intFormat = GL_RGBA8;
|
|
|
|
this->vboFormat = GL_BGRA;
|
|
|
|
break;
|
|
|
|
|
2017-12-05 09:33:05 +00:00
|
|
|
default:
|
2017-12-29 11:48:21 +00:00
|
|
|
DEBUG_ERROR("Format not supported");
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-05 09:33:05 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate the texture size in bytes
|
2017-12-29 11:48:21 +00:00
|
|
|
this->texSize =
|
|
|
|
this->format.height *
|
|
|
|
this->decoder->get_frame_pitch(this->decoderData);
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-10 16:47:07 +00:00
|
|
|
// generate lists for drawing
|
2017-12-13 19:54:53 +00:00
|
|
|
this->texList = glGenLists(BUFFER_COUNT);
|
2017-12-13 02:10:32 +00:00
|
|
|
this->fpsList = glGenLists(1);
|
|
|
|
this->mouseList = glGenLists(1);
|
2017-12-10 16:47:07 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
// generate the pixel unpack buffers if the decoder isn't going to do it for us
|
|
|
|
if (!this->decoder->has_gl)
|
2017-12-19 13:53:45 +00:00
|
|
|
{
|
2017-12-30 13:27:26 +00:00
|
|
|
glGenBuffers(BUFFER_COUNT, this->vboID);
|
|
|
|
if (check_gl_error("glGenBuffers"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this->hasBuffers = true;
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
if (this->amdPinnedMemSupport)
|
2017-12-30 13:27:26 +00:00
|
|
|
{
|
2018-05-15 03:23:44 +00:00
|
|
|
const int pagesize = getpagesize();
|
|
|
|
for(int i = 0; i < BUFFER_COUNT; ++i)
|
2017-12-30 13:27:26 +00:00
|
|
|
{
|
2018-05-15 03:23:44 +00:00
|
|
|
glBindBuffer(GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD, this->vboID[i]);
|
|
|
|
if (check_gl_error("glBindBuffer"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-30 13:27:26 +00:00
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
this->texPixels[i] = memalign(pagesize, this->texSize);
|
|
|
|
glBufferData(
|
|
|
|
GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD,
|
|
|
|
this->texSize,
|
|
|
|
this->texPixels[i],
|
|
|
|
GL_STREAM_DRAW);
|
|
|
|
|
|
|
|
if (check_gl_error("glBufferData"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-30 13:27:26 +00:00
|
|
|
}
|
2018-05-15 03:23:44 +00:00
|
|
|
glBindBuffer(GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for(int i = 0; i < BUFFER_COUNT; ++i)
|
|
|
|
{
|
|
|
|
glBindBuffer(GL_PIXEL_UNPACK_BUFFER, this->vboID[i]);
|
|
|
|
if (check_gl_error("glBindBuffer"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-30 13:27:26 +00:00
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
glBufferStorage(
|
|
|
|
GL_PIXEL_UNPACK_BUFFER,
|
|
|
|
this->texSize,
|
|
|
|
NULL,
|
|
|
|
GL_MAP_WRITE_BIT |
|
|
|
|
GL_MAP_PERSISTENT_BIT
|
|
|
|
);
|
|
|
|
if (check_gl_error("glBufferStorage"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
this->texPixels[i] = glMapBufferRange(
|
|
|
|
GL_PIXEL_UNPACK_BUFFER,
|
|
|
|
0,
|
|
|
|
this->texSize,
|
|
|
|
GL_MAP_WRITE_BIT |
|
|
|
|
GL_MAP_PERSISTENT_BIT |
|
|
|
|
GL_MAP_FLUSH_EXPLICIT_BIT
|
|
|
|
);
|
|
|
|
|
|
|
|
if (check_gl_error("glMapBufferRange"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-30 13:27:26 +00:00
|
|
|
}
|
2018-05-15 03:23:44 +00:00
|
|
|
glBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0);
|
2017-12-30 13:27:26 +00:00
|
|
|
}
|
2017-12-19 13:53:45 +00:00
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
// create the overlay textures
|
2017-12-12 15:22:47 +00:00
|
|
|
glGenTextures(TEXTURE_COUNT, this->textures);
|
2017-12-19 13:53:45 +00:00
|
|
|
if (check_gl_error("glGenTextures"))
|
|
|
|
{
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-05 09:33:05 +00:00
|
|
|
return false;
|
2017-12-19 13:53:45 +00:00
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
this->hasTextures = true;
|
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
// create the frame textures
|
|
|
|
glGenTextures(BUFFER_COUNT, this->frames);
|
|
|
|
if (check_gl_error("glGenTextures"))
|
2017-12-19 13:53:45 +00:00
|
|
|
{
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-13 19:54:53 +00:00
|
|
|
return false;
|
2017-12-19 13:53:45 +00:00
|
|
|
}
|
2017-12-30 13:27:26 +00:00
|
|
|
this->hasFrames = true;
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
for(int i = 0; i < BUFFER_COUNT; ++i)
|
2017-12-19 13:53:45 +00:00
|
|
|
{
|
2017-12-30 13:27:26 +00:00
|
|
|
// bind and create the new texture
|
|
|
|
glBindTexture(GL_TEXTURE_2D, this->frames[i]);
|
|
|
|
if (check_gl_error("glBindTexture"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-13 19:54:53 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
glTexImage2D(
|
|
|
|
GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
this->intFormat,
|
|
|
|
this->format.width,
|
|
|
|
this->format.height,
|
|
|
|
0,
|
|
|
|
this->vboFormat,
|
|
|
|
GL_UNSIGNED_BYTE,
|
|
|
|
(void*)0
|
|
|
|
);
|
|
|
|
if (check_gl_error("glTexImage2D"))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-13 19:54:53 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
if (this->decoder->has_gl)
|
|
|
|
{
|
|
|
|
if (!this->decoder->init_gl_texture(
|
|
|
|
this->decoderData,
|
|
|
|
GL_TEXTURE_2D,
|
|
|
|
this->frames[i],
|
|
|
|
&this->decoderFrames[i]))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// configure the texture
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-13 02:10:32 +00:00
|
|
|
// create the display lists
|
|
|
|
glNewList(this->texList + i, GL_COMPILE);
|
2017-12-30 13:27:26 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, this->frames[i]);
|
2017-12-13 02:10:32 +00:00
|
|
|
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
glBegin(GL_TRIANGLE_STRIP);
|
2017-12-30 13:27:26 +00:00
|
|
|
glTexCoord2f(0.0f, 0.0f); glVertex2i(0 , 0 );
|
|
|
|
glTexCoord2f(1.0f, 0.0f); glVertex2i(this->format.width, 0 );
|
|
|
|
glTexCoord2f(0.0f, 1.0f); glVertex2i(0 , this->format.height);
|
|
|
|
glTexCoord2f(1.0f, 1.0f); glVertex2i(this->format.width, this->format.height);
|
2017-12-13 02:10:32 +00:00
|
|
|
glEnd();
|
|
|
|
glEndList();
|
2017-12-05 09:33:05 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 15:22:47 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
2017-12-13 19:54:53 +00:00
|
|
|
glBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0);
|
2017-12-12 15:22:47 +00:00
|
|
|
|
2017-12-05 09:33:05 +00:00
|
|
|
glEnable(GL_TEXTURE_2D);
|
2017-12-10 14:31:52 +00:00
|
|
|
glEnable(GL_COLOR_MATERIAL);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glBlendEquation(GL_FUNC_ADD);
|
|
|
|
|
|
|
|
this->resizeWindow = true;
|
|
|
|
this->drawStart = nanotime();
|
2017-12-10 20:14:43 +00:00
|
|
|
glXGetVideoSyncSGI(&this->gpuFrameCount);
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
this->configured = true;
|
|
|
|
this->reconfigure = false;
|
|
|
|
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-05 09:33:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
static void deconfigure(struct Inst * this)
|
2017-12-05 09:33:05 +00:00
|
|
|
{
|
2017-12-19 13:53:45 +00:00
|
|
|
if (!this->configured)
|
2017-12-05 09:33:05 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (this->hasTextures)
|
2017-12-14 06:42:16 +00:00
|
|
|
{
|
2017-12-13 19:54:53 +00:00
|
|
|
glDeleteTextures(TEXTURE_COUNT, this->textures);
|
2017-12-14 06:42:16 +00:00
|
|
|
this->hasTextures = false;
|
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
if (this->hasFrames)
|
|
|
|
{
|
|
|
|
if (this->decoder->has_gl)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < BUFFER_COUNT; ++i)
|
|
|
|
{
|
|
|
|
if (this->decoderFrames[i])
|
|
|
|
this->decoder->free_gl_texture(
|
|
|
|
this->decoderData,
|
|
|
|
this->decoderFrames[i]
|
|
|
|
);
|
|
|
|
this->decoderFrames[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
glDeleteTextures(BUFFER_COUNT, this->frames);
|
|
|
|
this->hasFrames = false;
|
|
|
|
}
|
|
|
|
|
2017-12-05 09:33:05 +00:00
|
|
|
if (this->hasBuffers)
|
2017-12-14 06:42:16 +00:00
|
|
|
{
|
2017-12-30 13:27:26 +00:00
|
|
|
glDeleteBuffers(BUFFER_COUNT, this->vboID);
|
2017-12-14 06:42:16 +00:00
|
|
|
this->hasBuffers = false;
|
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
if (this->amdPinnedMemSupport)
|
|
|
|
for(int i = 0; i < BUFFER_COUNT; ++i)
|
|
|
|
{
|
|
|
|
if (this->fences[i])
|
|
|
|
{
|
|
|
|
glDeleteSync(this->fences[i]);
|
|
|
|
this->fences[i] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->texPixels[i])
|
|
|
|
{
|
|
|
|
free(this->texPixels[i]);
|
|
|
|
this->texPixels[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-10 14:31:52 +00:00
|
|
|
if (this->glContext)
|
2017-12-14 06:42:16 +00:00
|
|
|
{
|
2017-12-10 14:31:52 +00:00
|
|
|
SDL_GL_DeleteContext(this->glContext);
|
2017-12-14 06:42:16 +00:00
|
|
|
this->glContext = NULL;
|
|
|
|
}
|
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
if (this->decoderData)
|
2017-12-29 11:48:21 +00:00
|
|
|
{
|
|
|
|
this->decoder->destroy(this->decoderData);
|
|
|
|
this->decoderData = NULL;
|
|
|
|
}
|
|
|
|
|
2017-12-14 06:42:16 +00:00
|
|
|
this->configured = false;
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
static void update_mouse_shape(struct Inst * this, bool * newShape)
|
2017-12-05 09:33:05 +00:00
|
|
|
{
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_LOCK(this->mouseLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
*newShape = this->newShape;
|
|
|
|
if (!this->newShape)
|
|
|
|
{
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->mouseLock);
|
2017-12-10 14:31:52 +00:00
|
|
|
return;
|
2017-12-19 13:53:45 +00:00
|
|
|
}
|
2017-12-10 14:31:52 +00:00
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
const LG_RendererCursor cursor = this->mouseCursor;
|
|
|
|
const int width = this->mouseWidth;
|
|
|
|
const int height = this->mouseHeight;
|
|
|
|
const int pitch = this->mousePitch;
|
|
|
|
const uint8_t * data = this->mouseData;
|
2017-12-12 16:08:13 +00:00
|
|
|
|
2017-12-12 17:49:43 +00:00
|
|
|
this->mouseType = cursor;
|
2017-12-12 16:51:25 +00:00
|
|
|
switch(cursor)
|
|
|
|
{
|
|
|
|
case LG_CURSOR_COLOR:
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, this->textures[MOUSE_TEXTURE]);
|
|
|
|
glPixelStorei(GL_UNPACK_ALIGNMENT , 4 );
|
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH, width);
|
|
|
|
glTexImage2D
|
|
|
|
(
|
|
|
|
GL_TEXTURE_2D,
|
|
|
|
0 ,
|
|
|
|
GL_RGBA,
|
|
|
|
width ,
|
|
|
|
height ,
|
|
|
|
0 ,
|
2017-12-14 23:20:20 +00:00
|
|
|
GL_BGRA, // windows cursors are in BGRA format
|
2017-12-12 16:51:25 +00:00
|
|
|
GL_UNSIGNED_BYTE,
|
|
|
|
data
|
|
|
|
);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
|
|
|
|
this->mousePos.w = width;
|
|
|
|
this->mousePos.h = height;
|
2017-12-13 02:10:32 +00:00
|
|
|
|
|
|
|
glNewList(this->mouseList, GL_COMPILE);
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, this->textures[MOUSE_TEXTURE]);
|
|
|
|
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
glBegin(GL_TRIANGLE_STRIP);
|
|
|
|
glTexCoord2f(0.0f, 0.0f); glVertex2i(0 , 0 );
|
|
|
|
glTexCoord2f(1.0f, 0.0f); glVertex2i(width, 0 );
|
|
|
|
glTexCoord2f(0.0f, 1.0f); glVertex2i(0 , height);
|
|
|
|
glTexCoord2f(1.0f, 1.0f); glVertex2i(width, height);
|
|
|
|
glEnd();
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
glEndList();
|
2017-12-12 16:51:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LG_CURSOR_MONOCHROME:
|
|
|
|
{
|
2017-12-13 02:10:32 +00:00
|
|
|
const int hheight = height / 2;
|
2017-12-12 17:49:43 +00:00
|
|
|
uint32_t d[width * height];
|
2017-12-13 02:10:32 +00:00
|
|
|
for(int y = 0; y < hheight; ++y)
|
2017-12-12 17:49:43 +00:00
|
|
|
for(int x = 0; x < width; ++x)
|
|
|
|
{
|
|
|
|
const uint8_t * srcAnd = data + (pitch * y) + (x / 8);
|
2017-12-13 02:10:32 +00:00
|
|
|
const uint8_t * srcXor = srcAnd + pitch * hheight;
|
2017-12-12 17:49:43 +00:00
|
|
|
const uint8_t mask = 0x80 >> (x % 8);
|
|
|
|
const uint32_t andMask = (*srcAnd & mask) ? 0xFFFFFFFF : 0xFF000000;
|
|
|
|
const uint32_t xorMask = (*srcXor & mask) ? 0x00FFFFFF : 0x00000000;
|
|
|
|
|
2017-12-13 02:10:32 +00:00
|
|
|
d[y * width + x ] = andMask;
|
|
|
|
d[y * width + x + width * hheight] = xorMask;
|
2017-12-12 17:49:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glBindTexture(GL_TEXTURE_2D, this->textures[MOUSE_TEXTURE]);
|
|
|
|
glPixelStorei(GL_UNPACK_ALIGNMENT , 4 );
|
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH, width);
|
|
|
|
glTexImage2D
|
|
|
|
(
|
|
|
|
GL_TEXTURE_2D,
|
|
|
|
0 ,
|
|
|
|
GL_RGBA,
|
|
|
|
width ,
|
|
|
|
height ,
|
|
|
|
0 ,
|
|
|
|
GL_RGBA,
|
|
|
|
GL_UNSIGNED_BYTE,
|
|
|
|
d
|
|
|
|
);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
|
|
|
|
this->mousePos.w = width;
|
2017-12-13 02:10:32 +00:00
|
|
|
this->mousePos.h = hheight;
|
|
|
|
|
|
|
|
glNewList(this->mouseList, GL_COMPILE);
|
|
|
|
glEnable(GL_COLOR_LOGIC_OP);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, this->textures[MOUSE_TEXTURE]);
|
|
|
|
glLogicOp(GL_AND);
|
|
|
|
glBegin(GL_TRIANGLE_STRIP);
|
2017-12-13 09:44:58 +00:00
|
|
|
glTexCoord2f(0.0f, 0.0f); glVertex2i(0 , 0 );
|
|
|
|
glTexCoord2f(1.0f, 0.0f); glVertex2i(width, 0 );
|
2017-12-13 02:10:32 +00:00
|
|
|
glTexCoord2f(0.0f, 0.5f); glVertex2i(0 , hheight);
|
|
|
|
glTexCoord2f(1.0f, 0.5f); glVertex2i(width, hheight);
|
|
|
|
glEnd();
|
|
|
|
glLogicOp(GL_XOR);
|
|
|
|
glBegin(GL_TRIANGLE_STRIP);
|
2017-12-13 09:44:58 +00:00
|
|
|
glTexCoord2f(0.0f, 0.5f); glVertex2i(0 , 0 );
|
|
|
|
glTexCoord2f(1.0f, 0.5f); glVertex2i(width, 0 );
|
2017-12-13 02:10:32 +00:00
|
|
|
glTexCoord2f(0.0f, 1.0f); glVertex2i(0 , hheight);
|
|
|
|
glTexCoord2f(1.0f, 1.0f); glVertex2i(width, hheight);
|
|
|
|
glEnd();
|
|
|
|
glDisable(GL_COLOR_LOGIC_OP);
|
|
|
|
glEndList();
|
2017-12-12 16:51:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LG_CURSOR_MASKED_COLOR:
|
|
|
|
{
|
2017-12-13 02:10:32 +00:00
|
|
|
//TODO
|
2017-12-12 16:51:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 17:18:30 +00:00
|
|
|
this->mouseUpdate = true;
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->mouseLock);
|
2017-12-12 16:08:13 +00:00
|
|
|
}
|
|
|
|
|
2017-12-23 06:37:56 +00:00
|
|
|
static bool draw_frame(struct Inst * this)
|
2017-12-12 15:22:47 +00:00
|
|
|
{
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_LOCK(this->syncLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
if (!this->frameUpdate)
|
2017-12-14 06:42:16 +00:00
|
|
|
{
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_UNLOCK(this->syncLock);
|
2017-12-19 13:53:45 +00:00
|
|
|
return true;
|
2017-12-14 06:42:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
if (++this->texIndex == BUFFER_COUNT)
|
|
|
|
this->texIndex = 0;
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
this->frameUpdate = false;
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_UNLOCK(this->syncLock);
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-20 13:57:27 +00:00
|
|
|
LG_LOCK(this->formatLock);
|
2017-12-30 13:27:26 +00:00
|
|
|
if (this->decoder->has_gl)
|
|
|
|
{
|
|
|
|
if (!this->decoder->update_gl_texture(
|
|
|
|
this->decoderData,
|
|
|
|
this->decoderFrames[this->texIndex]
|
|
|
|
))
|
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
DEBUG_ERROR("Failed to update the texture from the decoder");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-05-15 03:23:44 +00:00
|
|
|
if (this->amdPinnedMemSupport && glIsSync(this->fences[this->texIndex]))
|
|
|
|
{
|
|
|
|
switch(glClientWaitSync(this->fences[this->texIndex], 0, GL_TIMEOUT_IGNORED))
|
|
|
|
{
|
|
|
|
case GL_ALREADY_SIGNALED:
|
|
|
|
break;
|
2017-12-10 16:02:45 +00:00
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
case GL_CONDITION_SATISFIED:
|
|
|
|
DEBUG_WARN("Had to wait for the sync");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_TIMEOUT_EXPIRED:
|
|
|
|
DEBUG_WARN("Timeout expired, DMA transfers are too slow!");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_WAIT_FAILED:
|
|
|
|
DEBUG_ERROR("Wait failed %s", gluErrorString(glGetError()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
glDeleteSync(this->fences[this->texIndex]);
|
|
|
|
this->fences[this->texIndex] = NULL;
|
|
|
|
}
|
2017-12-13 19:54:53 +00:00
|
|
|
|
2018-05-15 09:19:39 +00:00
|
|
|
const uint8_t * data = this->decoder->get_buffer(this->decoderData);
|
|
|
|
if (!data)
|
2017-12-30 13:27:26 +00:00
|
|
|
{
|
|
|
|
LG_UNLOCK(this->formatLock);
|
|
|
|
DEBUG_ERROR("Failed to get the buffer from the decoder");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-15 09:19:39 +00:00
|
|
|
memcpySSE(this->texPixels[this->texIndex], data, this->texSize);
|
|
|
|
|
2018-05-15 03:23:44 +00:00
|
|
|
if (this->amdPinnedMemSupport)
|
|
|
|
this->fences[this->texIndex] = glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
|
|
|
|
|
|
|
|
glBindTexture(GL_TEXTURE_2D, this->frames[this->texIndex]);
|
|
|
|
glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, this->vboID[this->texIndex]);
|
|
|
|
|
|
|
|
glPixelStorei(GL_UNPACK_ALIGNMENT , 4);
|
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH ,
|
|
|
|
this->decoder->get_frame_stride(this->decoderData)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!this->amdPinnedMemSupport)
|
|
|
|
glFlushMappedBufferRange(GL_PIXEL_UNPACK_BUFFER, 0, this->texSize);
|
2017-12-30 13:27:26 +00:00
|
|
|
|
|
|
|
// update the texture
|
|
|
|
glTexSubImage2D(
|
|
|
|
GL_TEXTURE_2D,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
this->format.width ,
|
|
|
|
this->format.height,
|
|
|
|
this->vboFormat,
|
|
|
|
GL_UNSIGNED_BYTE,
|
|
|
|
(void*)0
|
|
|
|
);
|
|
|
|
if (check_gl_error("glTexSubImage2D"))
|
|
|
|
{
|
|
|
|
DEBUG_ERROR("texIndex: %u, width: %u, height: %u, vboFormat: %x, texSize: %lu",
|
|
|
|
this->texIndex, this->format.width, this->format.height, this->vboFormat, this->texSize
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// unbind the buffer
|
2018-05-15 03:23:44 +00:00
|
|
|
glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
|
2017-12-30 13:27:26 +00:00
|
|
|
}
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-17 11:21:59 +00:00
|
|
|
const bool mipmap = this->opt.mipmap && (
|
2017-12-10 16:47:07 +00:00
|
|
|
(this->format.width > this->destRect.w) ||
|
|
|
|
(this->format.height > this->destRect.h));
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-30 13:27:26 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, this->frames[this->texIndex]);
|
2017-12-05 09:33:05 +00:00
|
|
|
if (mipmap)
|
2017-12-16 00:25:01 +00:00
|
|
|
{
|
2017-12-05 09:33:05 +00:00
|
|
|
glGenerateMipmap(GL_TEXTURE_2D);
|
2017-12-16 00:25:01 +00:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
}
|
2017-12-13 19:54:53 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
2017-12-30 13:27:26 +00:00
|
|
|
|
2017-12-20 14:03:21 +00:00
|
|
|
LG_UNLOCK(this->formatLock);
|
2017-12-12 15:22:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:53:45 +00:00
|
|
|
static void draw_mouse(struct Inst * this)
|
2017-12-12 15:22:47 +00:00
|
|
|
{
|
|
|
|
if (!this->mouseVisible)
|
|
|
|
return;
|
2017-12-05 09:33:05 +00:00
|
|
|
|
2017-12-12 15:22:47 +00:00
|
|
|
glPushMatrix();
|
2017-12-13 19:54:53 +00:00
|
|
|
glTranslatef(this->mousePos.x, this->mousePos.y, 0.0f);
|
2017-12-13 02:10:32 +00:00
|
|
|
glCallList(this->mouseList);
|
2017-12-12 15:22:47 +00:00
|
|
|
glPopMatrix();
|
2017-12-19 13:53:45 +00:00
|
|
|
}
|