[client] interface: rename LG_Renderer to LG_RendererOps

Part of the standardisation of using the `Ops` suffix for all interfaces
This commit is contained in:
Geoffrey McRae
2021-08-08 14:43:04 +10:00
parent 1a8267d55a
commit 45d1f27fb4
6 changed files with 9 additions and 9 deletions

View File

@@ -777,7 +777,7 @@ void intHandler(int sig)
static bool tryRenderer(const int index, const LG_RendererParams lgrParams,
bool * needsOpenGL)
{
const LG_Renderer *r = LG_Renderers[index];
const LG_RendererOps *r = LG_Renderers[index];
if (!IS_LG_RENDERER_VALID(r))
{

View File

@@ -89,7 +89,7 @@ struct AppState
bool posInfoValid;
bool alignToGuest;
const LG_Renderer * lgr;
const LG_RendererOps * lgr;
void * lgrData;
atomic_int lgrResize;
LG_Lock lgrLock;