@@ -34,35 +34,53 @@ values:
3434 desc : |-
3535 Call this function to return a new cairo_font_extents_t
3636 structure. A creation function for this structure is not provided
37- by the cairo API. After calling this, you should use
38- tolua.takeownership() on the return value to ensure ownership is
37+ by the cairo API.
38+
39+ After calling this, you should use
40+ `tolua.takeownership(cfe)` on the return value to ensure ownership is
3941 passed properly.
4042 - name : cairo_font_extents_t:destroy(structure)
4143 desc : |-
4244 Call this function to free memory allocated by
4345 cairo_font_extents_t:create.
46+
47+ You should call `tolua.releaseownership(cfe)` before calling this function to
48+ avoid double-frees, but only if you previously called
49+ `tolua.takeownership(cfe)`
4450 - name : cairo_matrix_t:create()
4551 desc : |-
4652 Call this function to return a new cairo_matrix_t structure.
4753 A creation function for this structure is not provided by the
48- cairo API. After calling this, you should use
49- tolua.takeownership() on the return value to ensure ownership is
54+ cairo API.
55+
56+ After calling this, you should use
57+ `tolua.takeownership(cm)` on the return value to ensure ownership is
5058 passed properly.
5159 - name : cairo_matrix_t:destroy(structure)
5260 desc : |-
5361 Call this function to free memory allocated by
5462 cairo_matrix_t:create.
63+
64+ You should call `tolua.releaseownership(cm)` before calling this function to
65+ avoid double-frees, but only if you previously called
66+ `tolua.takeownership(cm)`
5567 - name : cairo_text_extents_t:create()
5668 desc : |-
5769 Call this function to return a new cairo_text_extents_t
5870 structure. A creation function for this structure is not provided
59- by the cairo API. After calling this, you should use
60- tolua.takeownership() on the return value to ensure ownership is
71+ by the cairo API.
72+
73+ After calling this, you should use
74+ `tolua.takeownership(cte)` on the return value to ensure ownership is
6175 passed properly.
6276 - name : cairo_text_extents_t:destroy(structure)
6377 desc : |-
6478 Call this function to free memory allocated by
6579 cairo_text_extents_t:create.
80+
81+ You should call `tolua.releaseownership(cte)` before calling this function to
82+ avoid double-frees, but only if you previously called
83+ `tolua.takeownership(cte)`
6684 - name : conky_build_arch
6785 desc : |-
6886 A string containing the build architecture for this
@@ -123,3 +141,47 @@ values:
123141
124142 NOTE: This table is only defined when X support is
125143 enabled.
144+ - name : RsvgRectangle:create()
145+ desc : |-
146+ Call this method to return a new RsvgRectangle
147+ structure. A creation function for this structure is not provided
148+ by the Rsvg API.
149+
150+ After calling this, you should use `tolua.takeownership(rect)` on the return
151+ value to ensure ownership is passed properly.
152+ - name : RsvgRectangle:destroy()
153+ desc : |-
154+ Call this method to free memory allocated by
155+ `RsvgRectangle:create`.
156+
157+ You should call `tolua.releaseownership(rect)` before calling this function to
158+ avoid double-frees, but only if you previously called
159+ `tolua.takeownership(rect)`
160+ - name : RsvgRectangle:set(x, y, width, height)
161+ desc : |-
162+ Sets the values of an existing RsvgRectangle.
163+ - name : RsvgRectangle:get()
164+ desc : |-
165+ Gets the values of an existing RsvgRectangle.
166+ - name : RsvgDimensionData:create()
167+ desc : |-
168+ Call this method to return a new RsvgDimensionData
169+ structure. A creation function for this structure is not provided
170+ by the Rsvg API.
171+
172+ After calling this, you should use `tolua.takeownership(rect)` on the return
173+ value to ensure ownership is passed properly.
174+ - name : RsvgDimensionData:destroy()
175+ desc : |-
176+ Call this method to free memory allocated by
177+ `RsvgDimensionData:create`.
178+
179+ You should call `tolua.releaseownership(dd)` before calling this function to
180+ avoid double-frees, but only if you previously called
181+ `tolua.takeownership(dd)`
182+ - name : RsvgDimensionData:set(x, y, width, height)
183+ desc : |-
184+ Sets the values of an existing RsvgDimensionData.
185+ - name : RsvgDimensionData:get()
186+ desc : |-
187+ Gets the values of an existing RsvgDimensionData.
0 commit comments