| 153 | { |
| 154 | |
| 155 | BlurContext CreateBlurContext( BlurType type, BlurChannel channel, BlurProcess process, BlurFinalize finalize ) |
| 156 | { |
| 157 | BlurContext context; |
| 158 | context.type = type; |
| 159 | context.channel = channel; |
| 160 | context.process = process; |
| 161 | context.finalize = finalize; |
| 162 | |
| 163 | return context; |
| 164 | } |
| 165 | |
| 166 | |
| 167 |