TextureSampler_createWithFiltering function

  1. @Native<Pointer<TTextureSampler> Function(UnsignedInt, UnsignedInt, UnsignedInt, UnsignedInt, UnsignedInt)>(ffi.UnsignedInt, ffi.UnsignedInt, ffi.UnsignedInt, ffi.UnsignedInt, ffi.UnsignedInt)>(isLeaf: true)
Pointer<TTextureSampler> TextureSampler_createWithFiltering(
  1. int minFilter,
  2. int magFilter,
  3. int wrapS,
  4. int wrapT,
  5. int wrapR,
)

Implementation

@ffi.Native<
    ffi.Pointer<TTextureSampler> Function(ffi.UnsignedInt, ffi.UnsignedInt,
        ffi.UnsignedInt, ffi.UnsignedInt, ffi.UnsignedInt)>(isLeaf: true)
external ffi.Pointer<TTextureSampler> TextureSampler_createWithFiltering(
  int minFilter,
  int magFilter,
  int wrapS,
  int wrapT,
  int wrapR,
);