glGetnSeparableFilter function opengl_glext
void
glGetnSeparableFilter()
GLAPI void APIENTRY glGetnSeparableFilter (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span)
Implementation
void glGetnSeparableFilter(
int target,
int format,
int type,
int rowBufSize,
Pointer<Void> row,
int columnBufSize,
Pointer<Void> column,
Pointer<Void> span,
) {
final glGetnSeparableFilterAsFunction = _glGetnSeparableFilter
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 format,
Uint32 type,
Int32 rowBufSize,
Pointer<Void> row,
Int32 columnBufSize,
Pointer<Void> column,
Pointer<Void> span,
)
>
>()
.asFunction<
void Function(
int target,
int format,
int type,
int rowBufSize,
Pointer<Void> row,
int columnBufSize,
Pointer<Void> column,
Pointer<Void> span,
)
>();
return glGetnSeparableFilterAsFunction(
target,
format,
type,
rowBufSize,
row,
columnBufSize,
column,
span,
);
}