make working with non-go-comparable object properties a little easier

This commit is contained in:
Avi Zimmerman
2021-01-14 07:33:27 +02:00
parent 37c529bedf
commit d83b9c8b12
4 changed files with 18 additions and 28 deletions

View File

@@ -117,9 +117,6 @@ func NewFloat64Param(name, nick, blurb string, min, max, defaultValue float64, f
return &ParamSpec{paramSpec: paramSpec}
}
// TypeCaps is the static Glib Type for a GstCaps.
var TypeCaps = glib.Type(C.gst_caps_get_type())
// NewBoxedParam creates a new ParamSpec containing a boxed type. Some helper type castings are included
// in these bindings.
func NewBoxedParam(name, nick, blurb string, boxedType glib.Type, flags ParameterFlags) *ParamSpec {