glgsg: Fix INLINE keyword on GLSamplerContext constructor

This commit is contained in:
rdb 2026-01-15 09:44:25 +01:00
parent 586b92a4ab
commit d94b2dc5af
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ TypeHandle CLP(SamplerContext)::_type_handle;
/**
*
*/
INLINE CLP(SamplerContext)::
CLP(SamplerContext)::
CLP(SamplerContext)(CLP(GraphicsStateGuardian) *glgsg,
const SamplerState &sampler) :
SamplerContext(sampler)

View File

@ -25,8 +25,8 @@ class CLP(GraphicsStateGuardian);
*/
class EXPCL_GL CLP(SamplerContext) : public SamplerContext {
public:
INLINE CLP(SamplerContext)(CLP(GraphicsStateGuardian) *glgsg,
const SamplerState &sampler);
CLP(SamplerContext)(CLP(GraphicsStateGuardian) *glgsg,
const SamplerState &sampler);
ALLOC_DELETED_CHAIN(CLP(SamplerContext));
virtual ~CLP(SamplerContext)();