Enqueue_render_command

I Have got this issue upgrading my gstreamer plugin from 4.25 → 4.26, any help would be brilliant. My code is currently looking like this:

ENQUEUE_UNIQUE_RENDER_COMMAND_TWOPARAMETER(	//This was for UE4.25
			UpdateTextureCmd,
			FGstTexture*, Context, this,
			IGstSample*, Sample, Sample,
		{
			Context->RenderCmd_UpdateTexture(Sample);
		});

And Another instance of the deprecated macro here:

	ENQUEUE_UNIQUE_RENDER_COMMAND(
		CreateTextureCmd,
		FGstTexture*, Context, this,
		{
			Context->RenderCmd_CreateTexture();
		});
	*/