12 lines
364 B
C
12 lines
364 B
C
|
|
||
|
//------------------------------------------------------------------------
|
||
|
// image length checks
|
||
|
//------------------------------------------------------------------------
|
||
|
|
||
|
u64 orca_image_upload_region_rgba8_length(IM3Runtime runtime, oc_rect rect)
|
||
|
{
|
||
|
u64 pixelFormatWidth = sizeof(u8) * 4;
|
||
|
u64 len = rect.w * rect.h * pixelFormatWidth;
|
||
|
return len;
|
||
|
}
|