forked from AuroraMiddleware/gtk
2a38cecd33
The primary goal here was to cleanup the current GL renderer to make maintenance easier going forward. Furthermore, it tracks state to allow us to implement more advanced renderer features going forward. Reordering This renderer will reorder batches by render target to reduce the number of times render targets are changed. In the future, we could also reorder by program within the render target if we can determine that vertices do not overlap. Uniform Snapshots To allow for reordering of batches all uniforms need to be tracked for the programs. This allows us to create the full uniform state when the batch has been moved into a new position. Some care was taken as it can be performance sensitive. Attachment Snapshots Similar to uniform snapshots, we need to know all of the texture attachments so that we can rebind them when necessary. Render Jobs To help isolate the process of creating GL commands from the renderer abstraction a render job abstraction was added. This could be extended in the future if we decided to do tiling. Command Queue Render jobs create batches using the command queue. The command queue will snapshot uniform and attachment state so that it can reorder batches right before executing them. Currently, the only reordering done is to ensure that we only visit each render target once. We could extend this by tracking vertices, attachments, and others. This code currently uses an inline array helper to reduce overhead from GArray which was showing up on profiles. It could be changed to use GdkArray without too much work, but had roughly double the instructions. Cycle counts have not yet been determined. GLSL Programs This was simplified to use XMACROS so that we can just extend one file (gskglprograms.defs) instead of multiple places. The programs are added as fields in the driver for easy access. Driver The driver manages textures, render targets, access to atlases, programs, and more. There is one driver per display, by using the shared GL context. Some work could be done here to batch uploads so that we make fewer calls to upload when sending icon theme data to the GPU. We'd need to keep a copy of the atlas data for such purposes.
274 lines
11 KiB
C
274 lines
11 KiB
C
/* gsknglprogramprivate.h
|
|
*
|
|
* Copyright 2020 Christian Hergert <chergert@redhat.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef __GSK_NGL_PROGRAM_PRIVATE_H__
|
|
#define __GSK_NGL_PROGRAM_PRIVATE_H__
|
|
|
|
#include "gskngltypesprivate.h"
|
|
|
|
#include "gsknglcommandqueueprivate.h"
|
|
#include "gskngldriverprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GSK_TYPE_GL_PROGRAM (gsk_ngl_program_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE (GskNglProgram, gsk_ngl_program, GSK, NGL_PROGRAM, GObject)
|
|
|
|
struct _GskNglProgram
|
|
{
|
|
GObject parent_instance;
|
|
|
|
int id;
|
|
char *name;
|
|
GskNglDriver *driver;
|
|
|
|
/* In reality, this is the largest uniform position
|
|
* as returned after linking so that we can use direct
|
|
* indexes based on location.
|
|
*/
|
|
guint n_uniforms;
|
|
|
|
/* Cached pointer to avoid lots of pointer chasing/lookups */
|
|
GskNglUniformState *uniforms;
|
|
GskNglUniformProgram *program_info;
|
|
|
|
/* For custom programs */
|
|
int texture_locations[4];
|
|
int args_locations[8];
|
|
int size_location;
|
|
|
|
/* Static array for key->location transforms */
|
|
int uniform_locations[32];
|
|
};
|
|
|
|
GskNglProgram *gsk_ngl_program_new (GskNglDriver *driver,
|
|
const char *name,
|
|
int program_id);
|
|
gboolean gsk_ngl_program_add_uniform (GskNglProgram *self,
|
|
const char *name,
|
|
guint key);
|
|
void gsk_ngl_program_uniforms_added (GskNglProgram *self,
|
|
gboolean has_attachments);
|
|
void gsk_ngl_program_delete (GskNglProgram *self);
|
|
|
|
#define gsk_ngl_program_get_uniform_location(s,k) ((s)->uniform_locations[(k)])
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform1fv (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
guint count,
|
|
const float *values)
|
|
{
|
|
gsk_ngl_uniform_state_set1fv (self->uniforms, self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, count, values);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform2fv (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
guint count,
|
|
const float *values)
|
|
{
|
|
gsk_ngl_uniform_state_set2fv (self->uniforms, self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, count, values);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform4fv (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
guint count,
|
|
const float *values)
|
|
{
|
|
gsk_ngl_uniform_state_set4fv (self->uniforms, self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, count, values);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform_rounded_rect (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
const GskRoundedRect *rounded_rect)
|
|
{
|
|
gsk_ngl_uniform_state_set_rounded_rect (self->uniforms, self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, rounded_rect);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform1i (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
int value0)
|
|
{
|
|
gsk_ngl_uniform_state_set1i (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform2i (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
int value0,
|
|
int value1)
|
|
{
|
|
gsk_ngl_uniform_state_set2i (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0, value1);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform3i (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
int value0,
|
|
int value1,
|
|
int value2)
|
|
{
|
|
gsk_ngl_uniform_state_set3i (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0, value1, value2);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform4i (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
int value0,
|
|
int value1,
|
|
int value2,
|
|
int value3)
|
|
{
|
|
gsk_ngl_uniform_state_set4i (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0, value1, value2, value3);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform1f (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
float value0)
|
|
{
|
|
gsk_ngl_uniform_state_set1f (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform2f (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
float value0,
|
|
float value1)
|
|
{
|
|
gsk_ngl_uniform_state_set2f (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0, value1);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform3f (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
float value0,
|
|
float value1,
|
|
float value2)
|
|
{
|
|
gsk_ngl_uniform_state_set3f (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0, value1, value2);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform4f (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
float value0,
|
|
float value1,
|
|
float value2,
|
|
float value3)
|
|
{
|
|
gsk_ngl_uniform_state_set4f (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, value0, value1, value2, value3);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform_color (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
const GdkRGBA *color)
|
|
{
|
|
gsk_ngl_uniform_state_set_color (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, color);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform_texture (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
GLenum texture_target,
|
|
GLenum texture_slot,
|
|
guint texture_id)
|
|
{
|
|
gsk_ngl_attachment_state_bind_texture (self->driver->command_queue->attachments,
|
|
texture_target,
|
|
texture_slot,
|
|
texture_id);
|
|
gsk_ngl_uniform_state_set_texture (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, texture_slot);
|
|
}
|
|
|
|
static inline void
|
|
gsk_ngl_program_set_uniform_matrix (GskNglProgram *self,
|
|
guint key,
|
|
guint stamp,
|
|
const graphene_matrix_t *matrix)
|
|
{
|
|
gsk_ngl_uniform_state_set_matrix (self->uniforms,
|
|
self->program_info,
|
|
gsk_ngl_program_get_uniform_location (self, key),
|
|
stamp, matrix);
|
|
}
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GSK_NGL_PROGRAM_PRIVATE_H__ */
|