glGetnConvolutionFilter function opengl_glext
void
glGetnConvolutionFilter()
GLAPI void APIENTRY glGetnConvolutionFilter (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image)
Implementation
void glGetnConvolutionFilter(
int target,
int format,
int type,
int bufSize,
Pointer<NativeType> image,
) {
final glGetnConvolutionFilterAsFunction = _glGetnConvolutionFilter
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 format,
Uint32 type,
Uint32 bufSize,
Pointer<NativeType> image,
)
>
>()
.asFunction<
void Function(
int target,
int format,
int type,
int bufSize,
Pointer<NativeType> image,
)
>();
return glGetnConvolutionFilterAsFunction(
target,
format,
type,
bufSize,
image,
);
}