Lines Matching refs:sCompParams
1667 GAL_COMPRESSIONPARAMS sCompParams;
1669 INIT_GAL(&sCompParams);
1670 sCompParams.dwSubfunction = GALFN_SETCOMPRESSIONPARAMS;
1671 sCompParams.dwFlags = flags;
1672 sCompParams.dwCompOffset = offset;
1673 sCompParams.dwCompPitch = pitch;
1674 sCompParams.dwCompSize = size;
1676 if (ioctl(ifbdev_handle, FBIOGAL_API, &sCompParams))
1701 GAL_COMPRESSIONPARAMS sCompParams;
1703 INIT_GAL(&sCompParams);
1704 sCompParams.dwSubfunction = GALFN_GETCOMPRESSIONPARAMS;
1705 sCompParams.dwFlags = flags;
1707 if (ioctl(ifbdev_handle, FBIOGAL_API, &sCompParams))
1710 *offset = sCompParams.dwCompOffset;
1711 *pitch = sCompParams.dwCompPitch;
1712 *size = sCompParams.dwCompSize;