From c86cb0ac54d4cbffaf52f42b8d2fd07d36fb8177 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 26 May 2022 14:41:08 +0900 Subject: [PATCH] [renderer] Clean up some unwanted dependencies Nothing outside of the renderer should be including d_iface.h (locs.c does still for particle defines), and plugin/vid_render.h is more independent. --- include/QF/plugin/vid_render.h | 3 ++- include/d_iface.h | 2 +- include/mod_internal.h | 7 ++++--- include/r_local.h | 4 ++-- qw/source/cl_ents.c | 1 - 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/include/QF/plugin/vid_render.h b/include/QF/plugin/vid_render.h index 377c0e1a3..1f19a5278 100644 --- a/include/QF/plugin/vid_render.h +++ b/include/QF/plugin/vid_render.h @@ -43,6 +43,7 @@ struct mod_sprite_ctx_s; struct entqueue_s; struct framebuffer_s; struct vrect_s; +struct texture_s; /* All video plugins must export these functions @@ -52,7 +53,7 @@ typedef struct vid_model_funcs_s { size_t texture_render_size;// size of renderer specific texture data void (*Mod_LoadLighting) (model_t *mod, bsp_t *bsp); void (*Mod_SubdivideSurface) (model_t *mod, msurface_t *fa); - void (*Mod_ProcessTexture) (model_t *mod, texture_t *tx); + void (*Mod_ProcessTexture) (model_t *mod, struct texture_s *tx); void (*Mod_LoadIQM) (model_t *mod, void *buffer); void (*Mod_LoadAliasModel) (model_t *mod, void *buffer, cache_allocator_t allocator); diff --git a/include/d_iface.h b/include/d_iface.h index 1a0479d44..b687e8df1 100644 --- a/include/d_iface.h +++ b/include/d_iface.h @@ -193,7 +193,7 @@ typedef struct msurface_t *surf; // description for surface to generate fixed8_t lightadj[MAXLIGHTMAPS]; // adjust for lightmap levels for dynamic lighting - texture_t *texture; // corrected for animating textures + struct texture_s *texture; // corrected for animating textures int surfmip; // mipmapped ratio of surface texels / world pixels int surfwidth; // in mipmapped texels int surfheight; // in mipmapped texels diff --git a/include/mod_internal.h b/include/mod_internal.h index 242e15666..a135dff21 100644 --- a/include/mod_internal.h +++ b/include/mod_internal.h @@ -77,10 +77,11 @@ void sw_Mod_IQMFinish (model_t *mod); void gl_Mod_LoadLighting (model_t *mod, bsp_t *bsp); void gl_Mod_SubdivideSurface (model_t *mod, msurface_t *fa); -void gl_Mod_ProcessTexture (model_t *mod, texture_t *tx); +struct texture_s; +void gl_Mod_ProcessTexture (model_t *mod, struct texture_s *tx); void glsl_Mod_LoadLighting (model_t *mod, bsp_t *bsp); -void glsl_Mod_ProcessTexture (model_t *mod, texture_t *tx); +void glsl_Mod_ProcessTexture (model_t *mod, struct texture_s *tx); void sw_Mod_LoadLighting (model_t *mod, bsp_t *bsp); @@ -88,7 +89,7 @@ void Vulkan_Mod_LoadLighting (model_t *mod, bsp_t *bsp, struct vulkan_ctx_s *ctx); void Vulkan_Mod_SubdivideSurface (model_t *mod, msurface_t *fa, struct vulkan_ctx_s *ctx); -void Vulkan_Mod_ProcessTexture (model_t *mod, texture_t *tx, +void Vulkan_Mod_ProcessTexture (model_t *mod, struct texture_s *tx, struct vulkan_ctx_s *ctx); void Mod_LoadSpriteFrame (mspriteframe_t *frame, const dspriteframe_t *dframe); diff --git a/include/r_local.h b/include/r_local.h index 3e158fe9d..4f5d53185 100644 --- a/include/r_local.h +++ b/include/r_local.h @@ -155,7 +155,7 @@ void R_RenderBmodelFace (struct entity_s *ent, bedge_t *pedges, msurface_t *psur void R_TransformFrustum (void); void R_SetSkyFrame (void); void R_DrawSurfaceBlock (void); -texture_t *R_TextureAnimation (const struct entity_s *entity, msurface_t *surf) __attribute__((pure)); +struct texture_s *R_TextureAnimation (const struct entity_s *entity, msurface_t *surf) __attribute__((pure)); void R_GenSkyTile (void *pdest); void R_SurfPatch (void); @@ -184,7 +184,7 @@ void D_DrawSurfaces (void); void R_InsertNewEdges (edge_t *edgestoadd, edge_t *edgelist); void R_StepActiveU (edge_t *pedge); void R_RemoveEdges (edge_t *pedge); -void R_AddTexture (texture_t *tex); +void R_AddTexture (struct texture_s *tex); struct vulkan_ctx_s; void R_ClearTextures (void); void R_InitSurfaceChains (mod_brush_t *brush); diff --git a/qw/source/cl_ents.c b/qw/source/cl_ents.c index 49ad77cc1..1907cf15a 100644 --- a/qw/source/cl_ents.c +++ b/qw/source/cl_ents.c @@ -45,7 +45,6 @@ #include "QF/scene/scene.h" #include "compat.h" -#include "d_iface.h" #include "client/effects.h" #include "client/locs.h"