| 147 | } |
| 148 | |
| 149 | int msMergeRasterBufferOgl(imageObj *dest, rasterBufferObj *overlay, double opacity, int srcX, int srcY, int dstX, int dstY, int width, int height) |
| 150 | { |
| 151 | OglRenderer* renderer = getOglRenderer(dest); |
| 152 | renderer->drawRasterBuffer(overlay, opacity, srcX, srcY, dstX, dstY, width, height); |
| 153 | return MS_SUCCESS; |
| 154 | } |
| 155 | |
| 156 | imageObj* msImageCreateOgl(int width, int height, outputFormatObj *format, colorObj* bg) |
| 157 | { |
nothing calls this directly
no test coverage detected