Lines Matching refs:imageData
639 ResPixelBasedImageData* imageData = new(imageDataMemory) ResPixelBasedImageData(); in Create() local
641 imageData->m_DynamicAllocator = allocator; in Create()
642 imageData->m_Height = m_Description.height; in Create()
643 imageData->m_Width = m_Description.width; in Create()
644 imageData->m_LocationAddress = m_Description.locationAddress; in Create()
647 imageData->m_BitsPerPixel = static_cast<u32>(bytesizePerPixel * 8); in Create()
689 imageData->m_ImageDataTableCount = byteCount; in Create()
690 imageData->toImageDataTable.set_ptr(buffer); in Create()
694 imageData->m_ImageDataTableCount = 0; in Create()
695 imageData->toImageDataTable.set_ptr(NULL); in Create()
700 textureData->toImage.set_ptr(imageData); in Create()
757 ResPixelBasedImageData* imageData = new(imageDataMemory) ResPixelBasedImageData[MAX_CUBE_FACE]; in Create() local
808 imageData[i].m_DynamicAllocator = (i == 0) ? allocator : NULL; in Create()
809 imageData[i].m_Height = m_Description.width; in Create()
810 imageData[i].m_Width = m_Description.width; in Create()
811 imageData[i].m_LocationAddress = m_Description.locationAddress[i]; in Create()
813 imageData[i].m_BitsPerPixel = static_cast<u32>(bytesizePerPixel * 8); in Create()
817 imageData[i].m_ImageDataTableCount = byteCount; in Create()
818 … imageData[i].toImageDataTable.set_ptr(reinterpret_cast<void*>(bufferMemory + byteCount * i)); in Create()
822 imageData[i].m_ImageDataTableCount = 0; in Create()
823 imageData[i].toImageDataTable.set_ptr(NULL); in Create()
828 textureData->toImagesTables[i].set_ptr(&imageData[i]); in Create()
880 ResPixelBasedImageData* imageData = new(imageDataMemory) ResPixelBasedImageData(); in Create() local
882 imageData->m_DynamicAllocator = allocator; in Create()
883 imageData->m_Height = m_Description.height; in Create()
884 imageData->m_Width = m_Description.width; in Create()
885 imageData->m_LocationAddress = m_Description.locationAddress; in Create()
890 imageData->m_BitsPerPixel = static_cast<u32>(bytesizePerPixel * 8); in Create()
914 imageData->m_ImageDataTableCount = byteCount; in Create()
915 imageData->toImageDataTable.set_ptr(buffer); in Create()
919 imageData->m_ImageDataTableCount = 0; in Create()
920 imageData->toImageDataTable.set_ptr(NULL); in Create()
925 textureData->toImage.set_ptr(imageData); in Create()