Lines Matching refs:data
73 u8* data; member
233 sc->texture[TEX_CMAP].data = NULL; in DrawInit()
234 sc->texture[TEX_SIMG].data = NULL; in DrawInit()
551 if ( to->data != NULL ) in CreateColorMapTexture()
553 MEMFreeToAllocator(&DemoAllocator1, to->data); in CreateColorMapTexture()
561 to->data = MEMAllocFromAllocator(&DemoAllocator1, bufferSize); in CreateColorMapTexture()
577 to->data, in CreateColorMapTexture()
597 DCFlushRange(to->data, bufferSize); in CreateColorMapTexture()
632 if ( to->data != NULL ) in CreateSampleImgTexture()
634 MEMFreeToAllocator(&DemoAllocator1, to->data); in CreateSampleImgTexture()
642 to->data = MEMAllocFromAllocator(&DemoAllocator1, bufferSize); in CreateSampleImgTexture()
706 to->data, in CreateSampleImgTexture()
726 DCFlushRange(to->data, bufferSize); in CreateSampleImgTexture()
863 u16 data; in LoadColorMap() local
867 data = (u16) in LoadColorMap()
873 data = GXPackedRGB565( in LoadColorMap()
880 data = GXPackedRGB5A3( in LoadColorMap()
887 cmo->tlutBuffer[offset] = (u16)data; in LoadColorMap()
956 u8 m = (u8)( *(to->data + offset) & 0x0F ); in PlotOnTexture()
957 *(to->data + offset) = (u8)( m | ( d * 0x10) ); in PlotOnTexture()
961 u8 m = (u8)( *(to->data + offset) & 0xF0 ); in PlotOnTexture()
962 *(to->data + offset) = (u8)( m | d ); in PlotOnTexture()
976 *(to->data + offset) = d; in PlotOnTexture()
988 *(u16*)(to->data + offset) = d; in PlotOnTexture()