mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
105 lines
2.0 KiB
Go
105 lines
2.0 KiB
Go
package qt
|
|
|
|
/*
|
|
|
|
#include "gen_qfloat16.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type qfloat16 struct {
|
|
h *C.qfloat16
|
|
isSubclass bool
|
|
}
|
|
|
|
func (this *qfloat16) cPointer() *C.qfloat16 {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func (this *qfloat16) UnsafePointer() unsafe.Pointer {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Pointer(this.h)
|
|
}
|
|
|
|
// newqfloat16 constructs the type using only CGO pointers.
|
|
func newqfloat16(h *C.qfloat16) *qfloat16 {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &qfloat16{h: h}
|
|
}
|
|
|
|
// UnsafeNewqfloat16 constructs the type using only unsafe pointers.
|
|
func UnsafeNewqfloat16(h unsafe.Pointer) *qfloat16 {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
|
|
return &qfloat16{h: (*C.qfloat16)(h)}
|
|
}
|
|
|
|
// Newqfloat16 constructs a new qfloat16 object.
|
|
func Newqfloat16() *qfloat16 {
|
|
var outptr_qfloat16 *C.qfloat16 = nil
|
|
|
|
C.qfloat16_new(&outptr_qfloat16)
|
|
ret := newqfloat16(outptr_qfloat16)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
// Newqfloat162 constructs a new qfloat16 object.
|
|
func Newqfloat162(f float32) *qfloat16 {
|
|
var outptr_qfloat16 *C.qfloat16 = nil
|
|
|
|
C.qfloat16_new2((C.float)(f), &outptr_qfloat16)
|
|
ret := newqfloat16(outptr_qfloat16)
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
func (this *qfloat16) IsInf() bool {
|
|
return (bool)(C.qfloat16_IsInf(this.h))
|
|
}
|
|
|
|
func (this *qfloat16) IsNaN() bool {
|
|
return (bool)(C.qfloat16_IsNaN(this.h))
|
|
}
|
|
|
|
func (this *qfloat16) IsFinite() bool {
|
|
return (bool)(C.qfloat16_IsFinite(this.h))
|
|
}
|
|
|
|
func (this *qfloat16) FpClassify() int {
|
|
return (int)(C.qfloat16_FpClassify(this.h))
|
|
}
|
|
|
|
func (this *qfloat16) IsNormal() bool {
|
|
return (bool)(C.qfloat16_IsNormal(this.h))
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *qfloat16) Delete() {
|
|
C.qfloat16_Delete(this.h, C.bool(this.isSubclass))
|
|
}
|
|
|
|
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
|
|
// from C++ memory once it is unreachable from Go memory.
|
|
func (this *qfloat16) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *qfloat16) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|