mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-25 14:57:20 +00:00
[client] egl: add and use default quad helper for models
This commit is contained in:
parent
608b67af77
commit
b9f8f1a0ad
@ -356,22 +356,6 @@ bool egl_render_startup(void * opaque, SDL_Window * window)
|
|||||||
DEBUG_INFO("Renderer: %s", glGetString(GL_RENDERER));
|
DEBUG_INFO("Renderer: %s", glGetString(GL_RENDERER));
|
||||||
DEBUG_INFO("Version : %s", glGetString(GL_VERSION ));
|
DEBUG_INFO("Version : %s", glGetString(GL_VERSION ));
|
||||||
|
|
||||||
static const GLfloat square[] =
|
|
||||||
{
|
|
||||||
-1.0f, -1.0f, 0.0f,
|
|
||||||
1.0f, -1.0f, 0.0f,
|
|
||||||
-1.0f, 1.0f, 0.0f,
|
|
||||||
1.0f, 1.0f, 0.0f
|
|
||||||
};
|
|
||||||
|
|
||||||
static const GLfloat uvs[] =
|
|
||||||
{
|
|
||||||
0.0f, 1.0f,
|
|
||||||
1.0f, 1.0f,
|
|
||||||
0.0f, 0.0f,
|
|
||||||
1.0f, 0.0f
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!egl_shader_init(&this->shaders.rgba))
|
if (!egl_shader_init(&this->shaders.rgba))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@ -396,9 +380,8 @@ bool egl_render_startup(void * opaque, SDL_Window * window)
|
|||||||
if (!egl_model_init(&this->models.desktop))
|
if (!egl_model_init(&this->models.desktop))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
egl_model_set_verticies(this->models.desktop, square , sizeof(square) / sizeof(GLfloat));
|
egl_model_set_default(this->models.desktop);
|
||||||
egl_model_set_uvs (this->models.desktop, uvs , sizeof(uvs ) / sizeof(GLfloat));
|
egl_model_set_texture(this->models.desktop, this->textures.desktop);
|
||||||
egl_model_set_texture (this->models.desktop, this->textures.desktop);
|
|
||||||
|
|
||||||
eglSwapInterval(this->display, this->opt.vsync ? 1 : 0);
|
eglSwapInterval(this->display, this->opt.vsync ? 1 : 0);
|
||||||
|
|
||||||
|
@ -181,24 +181,7 @@ bool egl_cursor_init(EGL_Cursor ** cursor)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const GLfloat square[] =
|
egl_model_set_default((*cursor)->model);
|
||||||
{
|
|
||||||
-1.0f, -1.0f, 0.0f,
|
|
||||||
1.0f, -1.0f, 0.0f,
|
|
||||||
-1.0f, 1.0f, 0.0f,
|
|
||||||
1.0f, 1.0f, 0.0f
|
|
||||||
};
|
|
||||||
|
|
||||||
static const GLfloat uvs[] =
|
|
||||||
{
|
|
||||||
0.0f, 1.0f,
|
|
||||||
1.0f, 1.0f,
|
|
||||||
0.0f, 0.0f,
|
|
||||||
1.0f, 0.0f
|
|
||||||
};
|
|
||||||
|
|
||||||
egl_model_set_verticies((*cursor)->model, square, sizeof(square) / sizeof(GLfloat));
|
|
||||||
egl_model_set_uvs ((*cursor)->model, uvs , sizeof(uvs ) / sizeof(GLfloat));
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,25 +138,8 @@ bool egl_fps_init(EGL_FPS ** fps, const LG_Font * font, LG_FontObj fontObj)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const GLfloat square[] =
|
egl_model_set_default((*fps)->model);
|
||||||
{
|
egl_model_set_texture((*fps)->model, (*fps)->texture);
|
||||||
-1.0f, -1.0f, 0.0f,
|
|
||||||
1.0f, -1.0f, 0.0f,
|
|
||||||
-1.0f, 1.0f, 0.0f,
|
|
||||||
1.0f, 1.0f, 0.0f
|
|
||||||
};
|
|
||||||
|
|
||||||
static const GLfloat uvs[] =
|
|
||||||
{
|
|
||||||
0.0f, 1.0f,
|
|
||||||
1.0f, 1.0f,
|
|
||||||
0.0f, 0.0f,
|
|
||||||
1.0f, 0.0f
|
|
||||||
};
|
|
||||||
|
|
||||||
egl_model_set_verticies((*fps)->model, square, sizeof(square) / sizeof(GLfloat));
|
|
||||||
egl_model_set_uvs ((*fps)->model, uvs , sizeof(uvs ) / sizeof(GLfloat));
|
|
||||||
egl_model_set_texture ((*fps)->model, (*fps)->texture);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,28 @@ void egl_model_free(EGL_Model ** model)
|
|||||||
*model = NULL;
|
*model = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void egl_model_set_default(EGL_Model * model)
|
||||||
|
{
|
||||||
|
static const GLfloat square[] =
|
||||||
|
{
|
||||||
|
-1.0f, -1.0f, 0.0f,
|
||||||
|
1.0f, -1.0f, 0.0f,
|
||||||
|
-1.0f, 1.0f, 0.0f,
|
||||||
|
1.0f, 1.0f, 0.0f
|
||||||
|
};
|
||||||
|
|
||||||
|
static const GLfloat uvs[] =
|
||||||
|
{
|
||||||
|
0.0f, 1.0f,
|
||||||
|
1.0f, 1.0f,
|
||||||
|
0.0f, 0.0f,
|
||||||
|
1.0f, 0.0f
|
||||||
|
};
|
||||||
|
|
||||||
|
egl_model_set_verticies(model, square, sizeof(square) / sizeof(GLfloat));
|
||||||
|
egl_model_set_uvs (model, uvs , sizeof(uvs ) / sizeof(GLfloat));
|
||||||
|
}
|
||||||
|
|
||||||
void egl_model_set_verticies(EGL_Model * model, const GLfloat * verticies, const size_t count)
|
void egl_model_set_verticies(EGL_Model * model, const GLfloat * verticies, const size_t count)
|
||||||
{
|
{
|
||||||
if (model->hasVertexBuffer)
|
if (model->hasVertexBuffer)
|
||||||
|
@ -30,6 +30,7 @@ typedef struct EGL_Model EGL_Model;
|
|||||||
bool egl_model_init(EGL_Model ** model);
|
bool egl_model_init(EGL_Model ** model);
|
||||||
void egl_model_free(EGL_Model ** model);
|
void egl_model_free(EGL_Model ** model);
|
||||||
|
|
||||||
|
void egl_model_set_default (EGL_Model * model);
|
||||||
void egl_model_set_verticies (EGL_Model * model, const GLfloat * verticies, const size_t count);
|
void egl_model_set_verticies (EGL_Model * model, const GLfloat * verticies, const size_t count);
|
||||||
void egl_model_set_uvs (EGL_Model * model, const GLfloat * uvs , const size_t count);
|
void egl_model_set_uvs (EGL_Model * model, const GLfloat * uvs , const size_t count);
|
||||||
void egl_model_set_shader (EGL_Model * model, EGL_Shader * shader);
|
void egl_model_set_shader (EGL_Model * model, EGL_Shader * shader);
|
||||||
|
Loading…
Reference in New Issue
Block a user