Hi @vipuljain91
Thanks for the follow up! yes, the demo is linking to SDRAM several elements.
I think that it won't be possible to bring this demo to work with ease to the due to RT1050's internal SRAM memory size limitation. External SDRAM usage (close to 600 KB) is bigger than the available size of internal SDRAM (512 KB).
Below some snapshots of the memory consumption of the MCUXpresso demo release. It may be pretty similar on KEIL MDK

There is a big buffer called frame_buffer which used to hold LCD image, this buffer will consume almost all of the available internal SDRAM.

This buffer is statically defined like this by the GUIX display driver.
#define DISPLAY_HEIGHT 272
#define DISPLAY_WIDTH 480
-------
#define FRAME_BUFFER_ALIGN 64
#define FRAME_BUFFER_PIXELS (DISPLAY_HEIGHT * DISPLAY_WIDTH)
-------
AT_NONCACHEABLE_SECTION_ALIGN(static USHORT frame_buffer[2][FRAME_BUFFER_PIXELS], FRAME_BUFFER_ALIGN);
You may configure internal SRAM ( see AN12077 ) to place the frame_buffer into internal SRAM, but you may run out of space to other RAM residing variables, or have to do a lot of optimization. I am not telling this is impossible, but adapting this demo may be beyond my support scope.
All the best,
Diego