clutter 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (744) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +147 -0
  3. data/lib/clutter.rb +169 -0
  4. data/lib/clutter/actor-iter.rb +33 -0
  5. data/lib/clutter/actor.rb +34 -0
  6. data/lib/clutter/animatable.rb +26 -0
  7. data/lib/clutter/brightness-contrast-effect.rb +44 -0
  8. data/lib/clutter/cairo.rb +24 -0
  9. data/lib/clutter/clutter.rb +25 -0
  10. data/lib/clutter/color.rb +83 -0
  11. data/lib/clutter/event.rb +21 -0
  12. data/lib/clutter/point.rb +25 -0
  13. data/lib/clutter/text-buffer.rb +36 -0
  14. data/lib/clutter/text.rb +23 -0
  15. data/lib/clutter/threads.rb +38 -0
  16. data/sample/basic-actor.rb +123 -0
  17. data/sample/bin-layout.rb +213 -0
  18. data/sample/box-layout.rb +194 -0
  19. data/sample/canvas.rb +115 -0
  20. data/sample/constraints.rb +79 -0
  21. data/sample/drag-action.rb +175 -0
  22. data/sample/drop-action.rb +196 -0
  23. data/sample/easing-modes.rb +141 -0
  24. data/sample/flow-layout.rb +119 -0
  25. data/sample/grid-layout.rb +237 -0
  26. data/sample/image-content.rb +86 -0
  27. data/sample/pan-action.rb +98 -0
  28. data/sample/redhand.png +0 -0
  29. data/sample/rounded-rectangle.rb +88 -0
  30. data/sample/scroll-actor.rb +103 -0
  31. data/test/clutter-test-utils.rb +38 -0
  32. data/test/run-test.rb +59 -0
  33. data/test/test-clutter-actor.rb +242 -0
  34. data/test/test-clutter-blur-effect.rb +27 -0
  35. data/test/test-clutter-brightness-contrast-effect.rb +56 -0
  36. data/test/test-clutter-canvas.rb +43 -0
  37. data/test/test-clutter-color.rb +50 -0
  38. data/test/test-clutter-colorize-effect.rb +31 -0
  39. data/test/test-clutter-desaturate-effect.rb +30 -0
  40. data/test/test-clutter-feature.rb +34 -0
  41. data/test/test-clutter-flow-layout.rb +83 -0
  42. data/test/test-clutter-page-turn-effect.rb +46 -0
  43. data/test/test-clutter-property-transiton.rb +30 -0
  44. data/test/test-clutter-shader-effect.rb +65 -0
  45. data/test/test-clutter-text-buffer.rb +72 -0
  46. data/test/test-clutter-timeline.rb +59 -0
  47. data/vendor/local/bin/json-glib-format.exe +0 -0
  48. data/vendor/local/bin/json-glib-validate.exe +0 -0
  49. data/vendor/local/bin/libclutter-1.0-0.dll +0 -0
  50. data/vendor/local/bin/libcogl-20.dll +0 -0
  51. data/vendor/local/bin/libcogl-pango-20.dll +0 -0
  52. data/vendor/local/bin/libcogl-path-20.dll +0 -0
  53. data/vendor/local/bin/libjson-glib-1.0-0.dll +0 -0
  54. data/vendor/local/include/clutter-1.0/cally/cally-actor.h +160 -0
  55. data/vendor/local/include/clutter-1.0/cally/cally-clone.h +84 -0
  56. data/vendor/local/include/clutter-1.0/cally/cally-factory.h +117 -0
  57. data/vendor/local/include/clutter-1.0/cally/cally-group.h +87 -0
  58. data/vendor/local/include/clutter-1.0/cally/cally-main.h +44 -0
  59. data/vendor/local/include/clutter-1.0/cally/cally-rectangle.h +84 -0
  60. data/vendor/local/include/clutter-1.0/cally/cally-root.h +84 -0
  61. data/vendor/local/include/clutter-1.0/cally/cally-stage.h +84 -0
  62. data/vendor/local/include/clutter-1.0/cally/cally-text.h +84 -0
  63. data/vendor/local/include/clutter-1.0/cally/cally-texture.h +84 -0
  64. data/vendor/local/include/clutter-1.0/cally/cally-util.h +84 -0
  65. data/vendor/local/include/clutter-1.0/cally/cally.h +40 -0
  66. data/vendor/local/include/clutter-1.0/clutter/clutter-action.h +111 -0
  67. data/vendor/local/include/clutter-1.0/clutter/clutter-actor-meta.h +119 -0
  68. data/vendor/local/include/clutter-1.0/clutter/clutter-actor.h +836 -0
  69. data/vendor/local/include/clutter-1.0/clutter/clutter-align-constraint.h +77 -0
  70. data/vendor/local/include/clutter-1.0/clutter/clutter-animatable.h +121 -0
  71. data/vendor/local/include/clutter-1.0/clutter/clutter-backend.h +83 -0
  72. data/vendor/local/include/clutter-1.0/clutter/clutter-bin-layout.h +86 -0
  73. data/vendor/local/include/clutter-1.0/clutter/clutter-bind-constraint.h +77 -0
  74. data/vendor/local/include/clutter-1.0/clutter/clutter-binding-pool.h +135 -0
  75. data/vendor/local/include/clutter-1.0/clutter/clutter-blur-effect.h +59 -0
  76. data/vendor/local/include/clutter-1.0/clutter/clutter-box-layout.h +168 -0
  77. data/vendor/local/include/clutter-1.0/clutter/clutter-brightness-contrast-effect.h +88 -0
  78. data/vendor/local/include/clutter-1.0/clutter/clutter-cairo.h +61 -0
  79. data/vendor/local/include/clutter-1.0/clutter/clutter-canvas.h +106 -0
  80. data/vendor/local/include/clutter-1.0/clutter/clutter-child-meta.h +122 -0
  81. data/vendor/local/include/clutter-1.0/clutter/clutter-click-action.h +120 -0
  82. data/vendor/local/include/clutter-1.0/clutter/clutter-clone.h +94 -0
  83. data/vendor/local/include/clutter-1.0/clutter/clutter-cogl-compat.h +52 -0
  84. data/vendor/local/include/clutter-1.0/clutter/clutter-color-static.h +79 -0
  85. data/vendor/local/include/clutter-1.0/clutter/clutter-color.h +200 -0
  86. data/vendor/local/include/clutter-1.0/clutter/clutter-colorize-effect.h +67 -0
  87. data/vendor/local/include/clutter-1.0/clutter/clutter-config.h +19 -0
  88. data/vendor/local/include/clutter-1.0/clutter/clutter-constraint.h +120 -0
  89. data/vendor/local/include/clutter-1.0/clutter/clutter-container.h +196 -0
  90. data/vendor/local/include/clutter-1.0/clutter/clutter-content.h +103 -0
  91. data/vendor/local/include/clutter-1.0/clutter/clutter-deform-effect.h +117 -0
  92. data/vendor/local/include/clutter-1.0/clutter/clutter-deprecated.h +44 -0
  93. data/vendor/local/include/clutter-1.0/clutter/clutter-desaturate-effect.h +65 -0
  94. data/vendor/local/include/clutter-1.0/clutter/clutter-device-manager.h +110 -0
  95. data/vendor/local/include/clutter-1.0/clutter/clutter-drag-action.h +152 -0
  96. data/vendor/local/include/clutter-1.0/clutter/clutter-drop-action.h +115 -0
  97. data/vendor/local/include/clutter-1.0/clutter/clutter-effect.h +130 -0
  98. data/vendor/local/include/clutter-1.0/clutter/clutter-enum-types.h +190 -0
  99. data/vendor/local/include/clutter-1.0/clutter/clutter-enums.h +1385 -0
  100. data/vendor/local/include/clutter-1.0/clutter/clutter-event.h +588 -0
  101. data/vendor/local/include/clutter-1.0/clutter/clutter-feature.h +42 -0
  102. data/vendor/local/include/clutter-1.0/clutter/clutter-fixed-layout.h +82 -0
  103. data/vendor/local/include/clutter-1.0/clutter/clutter-flow-layout.h +129 -0
  104. data/vendor/local/include/clutter-1.0/clutter/clutter-gesture-action.h +179 -0
  105. data/vendor/local/include/clutter-1.0/clutter/clutter-grid-layout.h +161 -0
  106. data/vendor/local/include/clutter-1.0/clutter/clutter-group.h +96 -0
  107. data/vendor/local/include/clutter-1.0/clutter/clutter-image.h +141 -0
  108. data/vendor/local/include/clutter-1.0/clutter/clutter-input-device.h +140 -0
  109. data/vendor/local/include/clutter-1.0/clutter/clutter-interval.h +159 -0
  110. data/vendor/local/include/clutter-1.0/clutter/clutter-keyframe-transition.h +120 -0
  111. data/vendor/local/include/clutter-1.0/clutter/clutter-keysyms.h +2304 -0
  112. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-manager.h +227 -0
  113. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-meta.h +103 -0
  114. data/vendor/local/include/clutter-1.0/clutter/clutter-list-model.h +91 -0
  115. data/vendor/local/include/clutter-1.0/clutter/clutter-macros.h +327 -0
  116. data/vendor/local/include/clutter-1.0/clutter/clutter-main.h +184 -0
  117. data/vendor/local/include/clutter-1.0/clutter/clutter-marshal.h +273 -0
  118. data/vendor/local/include/clutter-1.0/clutter/clutter-model.h +422 -0
  119. data/vendor/local/include/clutter-1.0/clutter/clutter-offscreen-effect.h +122 -0
  120. data/vendor/local/include/clutter-1.0/clutter/clutter-page-turn-effect.h +80 -0
  121. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-node.h +102 -0
  122. data/vendor/local/include/clutter-1.0/clutter/clutter-paint-nodes.h +150 -0
  123. data/vendor/local/include/clutter-1.0/clutter/clutter-pan-action.h +147 -0
  124. data/vendor/local/include/clutter-1.0/clutter/clutter-path-constraint.h +72 -0
  125. data/vendor/local/include/clutter-1.0/clutter/clutter-path.h +181 -0
  126. data/vendor/local/include/clutter-1.0/clutter/clutter-property-transition.h +91 -0
  127. data/vendor/local/include/clutter-1.0/clutter/clutter-rotate-action.h +100 -0
  128. data/vendor/local/include/clutter-1.0/clutter/clutter-script.h +220 -0
  129. data/vendor/local/include/clutter-1.0/clutter/clutter-scriptable.h +112 -0
  130. data/vendor/local/include/clutter-1.0/clutter/clutter-scroll-actor.h +97 -0
  131. data/vendor/local/include/clutter-1.0/clutter/clutter-settings.h +27 -0
  132. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-effect.h +121 -0
  133. data/vendor/local/include/clutter-1.0/clutter/clutter-shader-types.h +104 -0
  134. data/vendor/local/include/clutter-1.0/clutter/clutter-snap-constraint.h +81 -0
  135. data/vendor/local/include/clutter-1.0/clutter/clutter-stage-manager.h +86 -0
  136. data/vendor/local/include/clutter-1.0/clutter/clutter-stage.h +250 -0
  137. data/vendor/local/include/clutter-1.0/clutter/clutter-swipe-action.h +109 -0
  138. data/vendor/local/include/clutter-1.0/clutter/clutter-tap-action.h +102 -0
  139. data/vendor/local/include/clutter-1.0/clutter/clutter-test-utils.h +164 -0
  140. data/vendor/local/include/clutter-1.0/clutter/clutter-text-buffer.h +172 -0
  141. data/vendor/local/include/clutter-1.0/clutter/clutter-text.h +307 -0
  142. data/vendor/local/include/clutter-1.0/clutter/clutter-texture.h +130 -0
  143. data/vendor/local/include/clutter-1.0/clutter/clutter-timeline.h +226 -0
  144. data/vendor/local/include/clutter-1.0/clutter/clutter-transition-group.h +91 -0
  145. data/vendor/local/include/clutter-1.0/clutter/clutter-transition.h +132 -0
  146. data/vendor/local/include/clutter-1.0/clutter/clutter-types.h +773 -0
  147. data/vendor/local/include/clutter-1.0/clutter/clutter-units.h +184 -0
  148. data/vendor/local/include/clutter-1.0/clutter/clutter-version.h +329 -0
  149. data/vendor/local/include/clutter-1.0/clutter/clutter-zoom-action.h +114 -0
  150. data/vendor/local/include/clutter-1.0/clutter/clutter.h +117 -0
  151. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-actor.h +161 -0
  152. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-alpha.h +144 -0
  153. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animatable.h +47 -0
  154. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animation.h +206 -0
  155. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-animator.h +186 -0
  156. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-backend.h +64 -0
  157. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-depth.h +101 -0
  158. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-ellipse.h +159 -0
  159. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-opacity.h +115 -0
  160. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-path.h +135 -0
  161. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-rotate.h +119 -0
  162. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour-scale.h +107 -0
  163. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-behaviour.h +170 -0
  164. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-bin-layout.h +56 -0
  165. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-box.h +143 -0
  166. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-cairo-texture.h +139 -0
  167. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-container.h +93 -0
  168. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-fixed.h +98 -0
  169. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-frame-source.h +49 -0
  170. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-group.h +62 -0
  171. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-input-device.h +41 -0
  172. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-keysyms.h +2306 -0
  173. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-main.h +96 -0
  174. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-media.h +121 -0
  175. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-rectangle.h +117 -0
  176. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-score.h +144 -0
  177. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-shader.h +182 -0
  178. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage-manager.h +42 -0
  179. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-stage.h +102 -0
  180. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-state.h +187 -0
  181. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-table-layout.h +172 -0
  182. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-texture.h +138 -0
  183. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeline.h +41 -0
  184. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-timeout-pool.h +69 -0
  185. data/vendor/local/include/clutter-1.0/clutter/deprecated/clutter-util.h +40 -0
  186. data/vendor/local/include/clutter-1.0/clutter/win32/clutter-win32.h +63 -0
  187. data/vendor/local/include/cogl/cogl-pango/cogl-pango.h +298 -0
  188. data/vendor/local/include/cogl/cogl-path/cogl-path-enum-types.h +20 -0
  189. data/vendor/local/include/cogl/cogl-path/cogl-path-types.h +85 -0
  190. data/vendor/local/include/cogl/cogl-path/cogl-path.h +68 -0
  191. data/vendor/local/include/cogl/cogl-path/cogl1-path-functions.h +467 -0
  192. data/vendor/local/include/cogl/cogl-path/cogl2-path-functions.h +545 -0
  193. data/vendor/local/include/cogl/cogl/cogl-atlas-texture.h +258 -0
  194. data/vendor/local/include/cogl/cogl/cogl-attribute-buffer.h +152 -0
  195. data/vendor/local/include/cogl/cogl/cogl-attribute.h +558 -0
  196. data/vendor/local/include/cogl/cogl/cogl-auto-texture.h +221 -0
  197. data/vendor/local/include/cogl/cogl/cogl-bitmap.h +336 -0
  198. data/vendor/local/include/cogl/cogl/cogl-buffer.h +324 -0
  199. data/vendor/local/include/cogl/cogl/cogl-clip-state.h +266 -0
  200. data/vendor/local/include/cogl/cogl/cogl-clutter.h +54 -0
  201. data/vendor/local/include/cogl/cogl/cogl-color.h +604 -0
  202. data/vendor/local/include/cogl/cogl/cogl-context.h +401 -0
  203. data/vendor/local/include/cogl/cogl/cogl-defines.h +58 -0
  204. data/vendor/local/include/cogl/cogl/cogl-deprecated.h +43 -0
  205. data/vendor/local/include/cogl/cogl/cogl-depth-state.h +270 -0
  206. data/vendor/local/include/cogl/cogl/cogl-display.h +234 -0
  207. data/vendor/local/include/cogl/cogl/cogl-enum-types.h +99 -0
  208. data/vendor/local/include/cogl/cogl/cogl-error.h +185 -0
  209. data/vendor/local/include/cogl/cogl/cogl-euler.h +269 -0
  210. data/vendor/local/include/cogl/cogl/cogl-fence.h +143 -0
  211. data/vendor/local/include/cogl/cogl/cogl-fixed.h +811 -0
  212. data/vendor/local/include/cogl/cogl/cogl-frame-info.h +148 -0
  213. data/vendor/local/include/cogl/cogl/cogl-framebuffer-deprecated.h +264 -0
  214. data/vendor/local/include/cogl/cogl/cogl-framebuffer.h +1818 -0
  215. data/vendor/local/include/cogl/cogl/cogl-gles2-types.h +474 -0
  216. data/vendor/local/include/cogl/cogl/cogl-gles2.h +420 -0
  217. data/vendor/local/include/cogl/cogl/cogl-glib-source.h +97 -0
  218. data/vendor/local/include/cogl/cogl/cogl-index-buffer.h +107 -0
  219. data/vendor/local/include/cogl/cogl/cogl-indices.h +165 -0
  220. data/vendor/local/include/cogl/cogl/cogl-macros.h +273 -0
  221. data/vendor/local/include/cogl/cogl/cogl-material-compat.h +1391 -0
  222. data/vendor/local/include/cogl/cogl/cogl-matrix-stack.h +645 -0
  223. data/vendor/local/include/cogl/cogl/cogl-matrix.h +821 -0
  224. data/vendor/local/include/cogl/cogl/cogl-meta-texture.h +194 -0
  225. data/vendor/local/include/cogl/cogl/cogl-object.h +251 -0
  226. data/vendor/local/include/cogl/cogl/cogl-offscreen.h +172 -0
  227. data/vendor/local/include/cogl/cogl/cogl-onscreen-template.h +125 -0
  228. data/vendor/local/include/cogl/cogl/cogl-onscreen.h +1012 -0
  229. data/vendor/local/include/cogl/cogl/cogl-output.h +261 -0
  230. data/vendor/local/include/cogl/cogl/cogl-pango.h +40 -0
  231. data/vendor/local/include/cogl/cogl/cogl-pipeline-layer-state.h +620 -0
  232. data/vendor/local/include/cogl/cogl/cogl-pipeline-state.h +980 -0
  233. data/vendor/local/include/cogl/cogl/cogl-pipeline.h +194 -0
  234. data/vendor/local/include/cogl/cogl/cogl-pixel-buffer.h +138 -0
  235. data/vendor/local/include/cogl/cogl/cogl-poll.h +200 -0
  236. data/vendor/local/include/cogl/cogl/cogl-primitive-texture.h +111 -0
  237. data/vendor/local/include/cogl/cogl/cogl-primitive.h +942 -0
  238. data/vendor/local/include/cogl/cogl/cogl-primitives.h +197 -0
  239. data/vendor/local/include/cogl/cogl/cogl-quaternion.h +564 -0
  240. data/vendor/local/include/cogl/cogl/cogl-renderer.h +446 -0
  241. data/vendor/local/include/cogl/cogl/cogl-shader.h +704 -0
  242. data/vendor/local/include/cogl/cogl/cogl-snippet.h +866 -0
  243. data/vendor/local/include/cogl/cogl/cogl-sub-texture.h +136 -0
  244. data/vendor/local/include/cogl/cogl/cogl-swap-chain.h +71 -0
  245. data/vendor/local/include/cogl/cogl/cogl-texture-2d-gl.h +78 -0
  246. data/vendor/local/include/cogl/cogl/cogl-texture-2d-sliced.h +301 -0
  247. data/vendor/local/include/cogl/cogl/cogl-texture-2d.h +234 -0
  248. data/vendor/local/include/cogl/cogl/cogl-texture-3d.h +204 -0
  249. data/vendor/local/include/cogl/cogl/cogl-texture-deprecated.h +105 -0
  250. data/vendor/local/include/cogl/cogl/cogl-texture-rectangle.h +218 -0
  251. data/vendor/local/include/cogl/cogl/cogl-texture.h +524 -0
  252. data/vendor/local/include/cogl/cogl/cogl-type-casts.h +53 -0
  253. data/vendor/local/include/cogl/cogl/cogl-types.h +925 -0
  254. data/vendor/local/include/cogl/cogl/cogl-vector.h +356 -0
  255. data/vendor/local/include/cogl/cogl/cogl-version.h +348 -0
  256. data/vendor/local/include/cogl/cogl/cogl-vertex-buffer.h +451 -0
  257. data/vendor/local/include/cogl/cogl/cogl-win32-renderer.h +123 -0
  258. data/vendor/local/include/cogl/cogl/cogl.h +194 -0
  259. data/vendor/local/include/cogl/cogl/cogl1-context.h +862 -0
  260. data/vendor/local/include/cogl/cogl/cogl2-experimental.h +37 -0
  261. data/vendor/local/include/cogl/cogl/deprecated/cogl-auto-texture.h +221 -0
  262. data/vendor/local/include/cogl/cogl/deprecated/cogl-clip-state.h +266 -0
  263. data/vendor/local/include/cogl/cogl/deprecated/cogl-clutter.h +54 -0
  264. data/vendor/local/include/cogl/cogl/deprecated/cogl-fixed.h +811 -0
  265. data/vendor/local/include/cogl/cogl/deprecated/cogl-framebuffer-deprecated.h +264 -0
  266. data/vendor/local/include/cogl/cogl/deprecated/cogl-material-compat.h +1391 -0
  267. data/vendor/local/include/cogl/cogl/deprecated/cogl-shader.h +704 -0
  268. data/vendor/local/include/cogl/cogl/deprecated/cogl-texture-deprecated.h +105 -0
  269. data/vendor/local/include/cogl/cogl/deprecated/cogl-type-casts.h +53 -0
  270. data/vendor/local/include/cogl/cogl/deprecated/cogl-vertex-buffer.h +451 -0
  271. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-core-functions.h +198 -0
  272. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-gles2-functions.h +43 -0
  273. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-glsl-functions.h +286 -0
  274. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles-core-functions.h +148 -0
  275. data/vendor/local/include/cogl/cogl/gl-prototypes/cogl-in-gles2-core-functions.h +186 -0
  276. data/vendor/local/include/json-glib-1.0/json-glib/json-builder.h +120 -0
  277. data/vendor/local/include/json-glib-1.0/json-glib/json-enum-types.h +41 -0
  278. data/vendor/local/include/json-glib-1.0/json-glib/json-generator.h +120 -0
  279. data/vendor/local/include/json-glib-1.0/json-glib/json-glib.h +47 -0
  280. data/vendor/local/include/json-glib-1.0/json-glib/json-gobject.h +199 -0
  281. data/vendor/local/include/json-glib-1.0/json-glib/json-gvariant.h +53 -0
  282. data/vendor/local/include/json-glib-1.0/json-glib/json-parser.h +188 -0
  283. data/vendor/local/include/json-glib-1.0/json-glib/json-path.h +102 -0
  284. data/vendor/local/include/json-glib-1.0/json-glib/json-reader.h +171 -0
  285. data/vendor/local/include/json-glib-1.0/json-glib/json-types.h +445 -0
  286. data/vendor/local/include/json-glib-1.0/json-glib/json-version-macros.h +135 -0
  287. data/vendor/local/include/json-glib-1.0/json-glib/json-version.h +102 -0
  288. data/vendor/local/lib/girepository-1.0/Cally-1.0.typelib +0 -0
  289. data/vendor/local/lib/girepository-1.0/Clutter-1.0.typelib +0 -0
  290. data/vendor/local/lib/girepository-1.0/Cogl-1.0.typelib +0 -0
  291. data/vendor/local/lib/girepository-1.0/Cogl-2.0.typelib +0 -0
  292. data/vendor/local/lib/girepository-1.0/CoglPango-1.0.typelib +0 -0
  293. data/vendor/local/lib/girepository-1.0/CoglPango-2.0.typelib +0 -0
  294. data/vendor/local/lib/girepository-1.0/Json-1.0.typelib +0 -0
  295. data/vendor/local/lib/libclutter-1.0.dll.a +0 -0
  296. data/vendor/local/lib/libclutter-1.0.la +41 -0
  297. data/vendor/local/lib/libcogl-pango.dll.a +0 -0
  298. data/vendor/local/lib/libcogl-pango.la +41 -0
  299. data/vendor/local/lib/libcogl-path.dll.a +0 -0
  300. data/vendor/local/lib/libcogl-path.la +41 -0
  301. data/vendor/local/lib/libcogl.dll.a +0 -0
  302. data/vendor/local/lib/libcogl.la +41 -0
  303. data/vendor/local/lib/libjson-glib-1.0.dll.a +0 -0
  304. data/vendor/local/lib/libjson-glib-1.0.la +41 -0
  305. data/vendor/local/lib/pkgconfig/cally-1.0.pc +13 -0
  306. data/vendor/local/lib/pkgconfig/clutter-1.0.pc +24 -0
  307. data/vendor/local/lib/pkgconfig/clutter-win32-1.0.pc +24 -0
  308. data/vendor/local/lib/pkgconfig/cogl-1.0.pc +13 -0
  309. data/vendor/local/lib/pkgconfig/cogl-2.0-experimental.pc +13 -0
  310. data/vendor/local/lib/pkgconfig/cogl-gl-1.0.pc +13 -0
  311. data/vendor/local/lib/pkgconfig/cogl-pango-1.0.pc +13 -0
  312. data/vendor/local/lib/pkgconfig/cogl-pango-2.0-experimental.pc +13 -0
  313. data/vendor/local/lib/pkgconfig/cogl-path-1.0.pc +13 -0
  314. data/vendor/local/lib/pkgconfig/cogl-path-2.0-experimental.pc +13 -0
  315. data/vendor/local/lib/pkgconfig/json-glib-1.0.pc +11 -0
  316. data/vendor/local/share/cogl/examples-data/crate.jpg +0 -0
  317. data/vendor/local/share/gir-1.0/Cally-1.0.gir +681 -0
  318. data/vendor/local/share/gir-1.0/Clutter-1.0.gir +70493 -0
  319. data/vendor/local/share/gir-1.0/Cogl-1.0.gir +8197 -0
  320. data/vendor/local/share/gir-1.0/Cogl-2.0.gir +20369 -0
  321. data/vendor/local/share/gir-1.0/CoglPango-1.0.gir +333 -0
  322. data/vendor/local/share/gir-1.0/CoglPango-2.0.gir +331 -0
  323. data/vendor/local/share/gir-1.0/Json-1.0.gir +4742 -0
  324. data/vendor/local/share/gtk-doc/html/cally/CallyActor.html +509 -0
  325. data/vendor/local/share/gtk-doc/html/cally/CallyClone.html +155 -0
  326. data/vendor/local/share/gtk-doc/html/cally/CallyGroup.html +154 -0
  327. data/vendor/local/share/gtk-doc/html/cally/CallyRectangle.html +154 -0
  328. data/vendor/local/share/gtk-doc/html/cally/CallyRoot.html +133 -0
  329. data/vendor/local/share/gtk-doc/html/cally/CallyStage.html +159 -0
  330. data/vendor/local/share/gtk-doc/html/cally/CallyText.html +154 -0
  331. data/vendor/local/share/gtk-doc/html/cally/CallyTexture.html +154 -0
  332. data/vendor/local/share/gtk-doc/html/cally/CallyUtil.html +102 -0
  333. data/vendor/local/share/gtk-doc/html/cally/cally-General-API.html +187 -0
  334. data/vendor/local/share/gtk-doc/html/cally/cally.devhelp2 +73 -0
  335. data/vendor/local/share/gtk-doc/html/cally/callyannotationglossary.html +41 -0
  336. data/vendor/local/share/gtk-doc/html/cally/callybase.html +71 -0
  337. data/vendor/local/share/gtk-doc/html/cally/callyobjecthierarchy.html +45 -0
  338. data/vendor/local/share/gtk-doc/html/cally/callyobjectindex.html +64 -0
  339. data/vendor/local/share/gtk-doc/html/cally/callyobjects.html +39 -0
  340. data/vendor/local/share/gtk-doc/html/cally/ch01.html +53 -0
  341. data/vendor/local/share/gtk-doc/html/cally/ch02.html +41 -0
  342. data/vendor/local/share/gtk-doc/html/cally/clutter-overview.html +96 -0
  343. data/vendor/local/share/gtk-doc/html/cally/home.png +0 -0
  344. data/vendor/local/share/gtk-doc/html/cally/index.html +103 -0
  345. data/vendor/local/share/gtk-doc/html/cally/index.sgml +121 -0
  346. data/vendor/local/share/gtk-doc/html/cally/ix01.html +193 -0
  347. data/vendor/local/share/gtk-doc/html/cally/ix02.html +31 -0
  348. data/vendor/local/share/gtk-doc/html/cally/ix03.html +185 -0
  349. data/vendor/local/share/gtk-doc/html/cally/ix04.html +39 -0
  350. data/vendor/local/share/gtk-doc/html/cally/left-insensitive.png +0 -0
  351. data/vendor/local/share/gtk-doc/html/cally/left.png +0 -0
  352. data/vendor/local/share/gtk-doc/html/cally/license.html +58 -0
  353. data/vendor/local/share/gtk-doc/html/cally/right-insensitive.png +0 -0
  354. data/vendor/local/share/gtk-doc/html/cally/right.png +0 -0
  355. data/vendor/local/share/gtk-doc/html/cally/style.css +476 -0
  356. data/vendor/local/share/gtk-doc/html/cally/up-insensitive.png +0 -0
  357. data/vendor/local/share/gtk-doc/html/cally/up.png +0 -0
  358. data/vendor/local/share/gtk-doc/html/clutter/ClutterAction.html +109 -0
  359. data/vendor/local/share/gtk-doc/html/clutter/ClutterActor.html +15797 -0
  360. data/vendor/local/share/gtk-doc/html/clutter/ClutterActorMeta.html +396 -0
  361. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlignConstraint.html +494 -0
  362. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlpha.html +816 -0
  363. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimatable.html +497 -0
  364. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimator.html +1406 -0
  365. data/vendor/local/share/gtk-doc/html/clutter/ClutterBackend.html +855 -0
  366. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviour.html +802 -0
  367. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourDepth.html +313 -0
  368. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourEllipse.html +1041 -0
  369. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourOpacity.html +319 -0
  370. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourPath.html +502 -0
  371. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourRotate.html +744 -0
  372. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourScale.html +476 -0
  373. data/vendor/local/share/gtk-doc/html/clutter/ClutterBinLayout.html +481 -0
  374. data/vendor/local/share/gtk-doc/html/clutter/ClutterBindConstraint.html +598 -0
  375. data/vendor/local/share/gtk-doc/html/clutter/ClutterBlurEffect.html +116 -0
  376. data/vendor/local/share/gtk-doc/html/clutter/ClutterBox.html +726 -0
  377. data/vendor/local/share/gtk-doc/html/clutter/ClutterBoxLayout.html +1471 -0
  378. data/vendor/local/share/gtk-doc/html/clutter/ClutterBrightnessContrastEffect.html +480 -0
  379. data/vendor/local/share/gtk-doc/html/clutter/ClutterCairoTexture.html +873 -0
  380. data/vendor/local/share/gtk-doc/html/clutter/ClutterCanvas.html +488 -0
  381. data/vendor/local/share/gtk-doc/html/clutter/ClutterChildMeta.html +287 -0
  382. data/vendor/local/share/gtk-doc/html/clutter/ClutterClickAction.html +667 -0
  383. data/vendor/local/share/gtk-doc/html/clutter/ClutterClone.html +258 -0
  384. data/vendor/local/share/gtk-doc/html/clutter/ClutterColorizeEffect.html +239 -0
  385. data/vendor/local/share/gtk-doc/html/clutter/ClutterConstraint.html +208 -0
  386. data/vendor/local/share/gtk-doc/html/clutter/ClutterContainer.html +1611 -0
  387. data/vendor/local/share/gtk-doc/html/clutter/ClutterContent.html +367 -0
  388. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeformEffect.html +418 -0
  389. data/vendor/local/share/gtk-doc/html/clutter/ClutterDesaturateEffect.html +242 -0
  390. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeviceManager.html +492 -0
  391. data/vendor/local/share/gtk-doc/html/clutter/ClutterDragAction.html +1120 -0
  392. data/vendor/local/share/gtk-doc/html/clutter/ClutterDropAction.html +498 -0
  393. data/vendor/local/share/gtk-doc/html/clutter/ClutterEffect.html +469 -0
  394. data/vendor/local/share/gtk-doc/html/clutter/ClutterFixedLayout.html +125 -0
  395. data/vendor/local/share/gtk-doc/html/clutter/ClutterFlowLayout.html +928 -0
  396. data/vendor/local/share/gtk-doc/html/clutter/ClutterGestureAction.html +1321 -0
  397. data/vendor/local/share/gtk-doc/html/clutter/ClutterGridLayout.html +1020 -0
  398. data/vendor/local/share/gtk-doc/html/clutter/ClutterGroup.html +272 -0
  399. data/vendor/local/share/gtk-doc/html/clutter/ClutterImage.html +527 -0
  400. data/vendor/local/share/gtk-doc/html/clutter/ClutterInputDevice.html +1805 -0
  401. data/vendor/local/share/gtk-doc/html/clutter/ClutterKeyframeTransition.html +616 -0
  402. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutManager.html +1280 -0
  403. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutMeta.html +189 -0
  404. data/vendor/local/share/gtk-doc/html/clutter/ClutterListModel.html +222 -0
  405. data/vendor/local/share/gtk-doc/html/clutter/ClutterMedia.html +1053 -0
  406. data/vendor/local/share/gtk-doc/html/clutter/ClutterModel.html +2052 -0
  407. data/vendor/local/share/gtk-doc/html/clutter/ClutterModelIter.html +779 -0
  408. data/vendor/local/share/gtk-doc/html/clutter/ClutterOffscreenEffect.html +452 -0
  409. data/vendor/local/share/gtk-doc/html/clutter/ClutterPageTurnEffect.html +428 -0
  410. data/vendor/local/share/gtk-doc/html/clutter/ClutterPaintNode.html +671 -0
  411. data/vendor/local/share/gtk-doc/html/clutter/ClutterPanAction.html +946 -0
  412. data/vendor/local/share/gtk-doc/html/clutter/ClutterPath.html +1576 -0
  413. data/vendor/local/share/gtk-doc/html/clutter/ClutterPathConstraint.html +407 -0
  414. data/vendor/local/share/gtk-doc/html/clutter/ClutterPropertyTransition.html +261 -0
  415. data/vendor/local/share/gtk-doc/html/clutter/ClutterRectangle.html +484 -0
  416. data/vendor/local/share/gtk-doc/html/clutter/ClutterRotateAction.html +216 -0
  417. data/vendor/local/share/gtk-doc/html/clutter/ClutterScore.html +1018 -0
  418. data/vendor/local/share/gtk-doc/html/clutter/ClutterScript.html +1421 -0
  419. data/vendor/local/share/gtk-doc/html/clutter/ClutterScriptable.html +364 -0
  420. data/vendor/local/share/gtk-doc/html/clutter/ClutterScrollActor.html +385 -0
  421. data/vendor/local/share/gtk-doc/html/clutter/ClutterSettings.html +376 -0
  422. data/vendor/local/share/gtk-doc/html/clutter/ClutterShaderEffect.html +693 -0
  423. data/vendor/local/share/gtk-doc/html/clutter/ClutterSnapConstraint.html +526 -0
  424. data/vendor/local/share/gtk-doc/html/clutter/ClutterStage.html +2751 -0
  425. data/vendor/local/share/gtk-doc/html/clutter/ClutterState.html +1823 -0
  426. data/vendor/local/share/gtk-doc/html/clutter/ClutterSwipeAction.html +333 -0
  427. data/vendor/local/share/gtk-doc/html/clutter/ClutterTableLayout.html +1393 -0
  428. data/vendor/local/share/gtk-doc/html/clutter/ClutterTapAction.html +219 -0
  429. data/vendor/local/share/gtk-doc/html/clutter/ClutterText.html +3871 -0
  430. data/vendor/local/share/gtk-doc/html/clutter/ClutterTextBuffer.html +906 -0
  431. data/vendor/local/share/gtk-doc/html/clutter/ClutterTexture.html +2085 -0
  432. data/vendor/local/share/gtk-doc/html/clutter/ClutterTimeline.html +2864 -0
  433. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransition.html +684 -0
  434. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransitionGroup.html +264 -0
  435. data/vendor/local/share/gtk-doc/html/clutter/ClutterZoomAction.html +474 -0
  436. data/vendor/local/share/gtk-doc/html/clutter/actor-box.png +0 -0
  437. data/vendor/local/share/gtk-doc/html/clutter/actor-example.png +0 -0
  438. data/vendor/local/share/gtk-doc/html/clutter/animator-key-frames.png +0 -0
  439. data/vendor/local/share/gtk-doc/html/clutter/annotation-glossary.html +95 -0
  440. data/vendor/local/share/gtk-doc/html/clutter/bin-layout.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/clutter/box-layout.png +0 -0
  442. data/vendor/local/share/gtk-doc/html/clutter/building-clutter.html +275 -0
  443. data/vendor/local/share/gtk-doc/html/clutter/ch01.html +65 -0
  444. data/vendor/local/share/gtk-doc/html/clutter/ch02.html +44 -0
  445. data/vendor/local/share/gtk-doc/html/clutter/ch03.html +47 -0
  446. data/vendor/local/share/gtk-doc/html/clutter/ch04.html +59 -0
  447. data/vendor/local/share/gtk-doc/html/clutter/ch05.html +44 -0
  448. data/vendor/local/share/gtk-doc/html/clutter/ch06.html +57 -0
  449. data/vendor/local/share/gtk-doc/html/clutter/ch07.html +38 -0
  450. data/vendor/local/share/gtk-doc/html/clutter/ch08.html +38 -0
  451. data/vendor/local/share/gtk-doc/html/clutter/ch09.html +53 -0
  452. data/vendor/local/share/gtk-doc/html/clutter/ch10.html +78 -0
  453. data/vendor/local/share/gtk-doc/html/clutter/ch11.html +38 -0
  454. data/vendor/local/share/gtk-doc/html/clutter/ch12.html +41 -0
  455. data/vendor/local/share/gtk-doc/html/clutter/clutter-Base-geometric-types.html +4244 -0
  456. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterGLXTexturePixmap.html +268 -0
  457. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterWaylandSurface.html +454 -0
  458. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterX11TexturePixmap.html +442 -0
  459. data/vendor/local/share/gtk-doc/html/clutter/clutter-Colors.html +1644 -0
  460. data/vendor/local/share/gtk-doc/html/clutter/clutter-EGL-Specific-Support.html +211 -0
  461. data/vendor/local/share/gtk-doc/html/clutter/clutter-Events.html +3454 -0
  462. data/vendor/local/share/gtk-doc/html/clutter/clutter-Features.html +232 -0
  463. data/vendor/local/share/gtk-doc/html/clutter/clutter-GDK-Specific-Support.html +297 -0
  464. data/vendor/local/share/gtk-doc/html/clutter/clutter-General.html +2112 -0
  465. data/vendor/local/share/gtk-doc/html/clutter/clutter-Implicit-Animations.html +2213 -0
  466. data/vendor/local/share/gtk-doc/html/clutter/clutter-Intel-CE3100-CE4100-Specific-Support.html +200 -0
  467. data/vendor/local/share/gtk-doc/html/clutter/clutter-Key-Bindings.html +992 -0
  468. data/vendor/local/share/gtk-doc/html/clutter/clutter-Paint-Nodes.html +411 -0
  469. data/vendor/local/share/gtk-doc/html/clutter/clutter-Shaders.html +1236 -0
  470. data/vendor/local/share/gtk-doc/html/clutter/clutter-Stage-Manager.html +418 -0
  471. data/vendor/local/share/gtk-doc/html/clutter/clutter-Unit-conversion.html +1006 -0
  472. data/vendor/local/share/gtk-doc/html/clutter/clutter-Utilities.html +661 -0
  473. data/vendor/local/share/gtk-doc/html/clutter/clutter-Value-intervals.html +1221 -0
  474. data/vendor/local/share/gtk-doc/html/clutter/clutter-Versioning-Macros.html +578 -0
  475. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-compositor-specific-support.html +106 -0
  476. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-specific-support.html +289 -0
  477. data/vendor/local/share/gtk-doc/html/clutter/clutter-Win32-Specific-Support.html +241 -0
  478. data/vendor/local/share/gtk-doc/html/clutter/clutter-X11-Specific-Support.html +916 -0
  479. data/vendor/local/share/gtk-doc/html/clutter/clutter-overview.html +77 -0
  480. data/vendor/local/share/gtk-doc/html/clutter/clutter.devhelp2 +2403 -0
  481. data/vendor/local/share/gtk-doc/html/clutter/clutteranimation.html +65 -0
  482. data/vendor/local/share/gtk-doc/html/clutter/clutterbackends.html +74 -0
  483. data/vendor/local/share/gtk-doc/html/clutter/clutterbase.html +195 -0
  484. data/vendor/local/share/gtk-doc/html/clutter/clutterglossary.html +37 -0
  485. data/vendor/local/share/gtk-doc/html/clutter/clutterobjecthierarchy.html +118 -0
  486. data/vendor/local/share/gtk-doc/html/clutter/clutterobjectindex.html +184 -0
  487. data/vendor/local/share/gtk-doc/html/clutter/clutterobjects.html +37 -0
  488. data/vendor/local/share/gtk-doc/html/clutter/cluttertools.html +105 -0
  489. data/vendor/local/share/gtk-doc/html/clutter/constraints-example.png +0 -0
  490. data/vendor/local/share/gtk-doc/html/clutter/deprecated.html +93 -0
  491. data/vendor/local/share/gtk-doc/html/clutter/easing-modes.png +0 -0
  492. data/vendor/local/share/gtk-doc/html/clutter/event-flow.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/clutter/flow-layout.png +0 -0
  494. data/vendor/local/share/gtk-doc/html/clutter/go01.html +126 -0
  495. data/vendor/local/share/gtk-doc/html/clutter/home.png +0 -0
  496. data/vendor/local/share/gtk-doc/html/clutter/index.html +454 -0
  497. data/vendor/local/share/gtk-doc/html/clutter/index.sgml +3165 -0
  498. data/vendor/local/share/gtk-doc/html/clutter/iterating-paths.html +56 -0
  499. data/vendor/local/share/gtk-doc/html/clutter/ix01.html +8982 -0
  500. data/vendor/local/share/gtk-doc/html/clutter/ix02.html +2198 -0
  501. data/vendor/local/share/gtk-doc/html/clutter/ix03.html +457 -0
  502. data/vendor/local/share/gtk-doc/html/clutter/ix04.html +578 -0
  503. data/vendor/local/share/gtk-doc/html/clutter/ix05.html +952 -0
  504. data/vendor/local/share/gtk-doc/html/clutter/ix06.html +637 -0
  505. data/vendor/local/share/gtk-doc/html/clutter/ix07.html +1525 -0
  506. data/vendor/local/share/gtk-doc/html/clutter/ix08.html +815 -0
  507. data/vendor/local/share/gtk-doc/html/clutter/ix09.html +1000 -0
  508. data/vendor/local/share/gtk-doc/html/clutter/ix10.html +364 -0
  509. data/vendor/local/share/gtk-doc/html/clutter/ix11.html +361 -0
  510. data/vendor/local/share/gtk-doc/html/clutter/ix12.html +1085 -0
  511. data/vendor/local/share/gtk-doc/html/clutter/ix13.html +979 -0
  512. data/vendor/local/share/gtk-doc/html/clutter/ix14.html +101 -0
  513. data/vendor/local/share/gtk-doc/html/clutter/left-insensitive.png +0 -0
  514. data/vendor/local/share/gtk-doc/html/clutter/left.png +0 -0
  515. data/vendor/local/share/gtk-doc/html/clutter/license.html +58 -0
  516. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterAnimation.html +223 -0
  517. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterBehaviour.html +197 -0
  518. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterEffect.html +154 -0
  519. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterPath.html +155 -0
  520. data/vendor/local/share/gtk-doc/html/clutter/migration.html +49 -0
  521. data/vendor/local/share/gtk-doc/html/clutter/offscreen-redirect.png +0 -0
  522. data/vendor/local/share/gtk-doc/html/clutter/path-alpha-func.png +0 -0
  523. data/vendor/local/share/gtk-doc/html/clutter/pt09.html +31 -0
  524. data/vendor/local/share/gtk-doc/html/clutter/right-insensitive.png +0 -0
  525. data/vendor/local/share/gtk-doc/html/clutter/right.png +0 -0
  526. data/vendor/local/share/gtk-doc/html/clutter/running-clutter.html +378 -0
  527. data/vendor/local/share/gtk-doc/html/clutter/style.css +476 -0
  528. data/vendor/local/share/gtk-doc/html/clutter/table-layout.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/clutter/up-insensitive.png +0 -0
  530. data/vendor/local/share/gtk-doc/html/clutter/up.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/clutter/using-cairo.html +36 -0
  532. data/vendor/local/share/gtk-doc/html/json-glib/JsonBuilder.html +676 -0
  533. data/vendor/local/share/gtk-doc/html/json-glib/JsonGenerator.html +660 -0
  534. data/vendor/local/share/gtk-doc/html/json-glib/JsonParser.html +1144 -0
  535. data/vendor/local/share/gtk-doc/html/json-glib/JsonPath.html +512 -0
  536. data/vendor/local/share/gtk-doc/html/json-glib/JsonReader.html +1140 -0
  537. data/vendor/local/share/gtk-doc/html/json-glib/annotation-glossary.html +66 -0
  538. data/vendor/local/share/gtk-doc/html/json-glib/ch01.html +41 -0
  539. data/vendor/local/share/gtk-doc/html/json-glib/ch02.html +41 -0
  540. data/vendor/local/share/gtk-doc/html/json-glib/ch03.html +38 -0
  541. data/vendor/local/share/gtk-doc/html/json-glib/ch05.html +40 -0
  542. data/vendor/local/share/gtk-doc/html/json-glib/home.png +0 -0
  543. data/vendor/local/share/gtk-doc/html/json-glib/index.html +134 -0
  544. data/vendor/local/share/gtk-doc/html/json-glib/index.sgml +327 -0
  545. data/vendor/local/share/gtk-doc/html/json-glib/ix01.html +965 -0
  546. data/vendor/local/share/gtk-doc/html/json-glib/ix02.html +49 -0
  547. data/vendor/local/share/gtk-doc/html/json-glib/ix03.html +56 -0
  548. data/vendor/local/share/gtk-doc/html/json-glib/ix04.html +49 -0
  549. data/vendor/local/share/gtk-doc/html/json-glib/ix05.html +181 -0
  550. data/vendor/local/share/gtk-doc/html/json-glib/ix06.html +116 -0
  551. data/vendor/local/share/gtk-doc/html/json-glib/ix07.html +156 -0
  552. data/vendor/local/share/gtk-doc/html/json-glib/ix08.html +132 -0
  553. data/vendor/local/share/gtk-doc/html/json-glib/json-advanced.html +50 -0
  554. data/vendor/local/share/gtk-doc/html/json-glib/json-base.html +61 -0
  555. data/vendor/local/share/gtk-doc/html/json-glib/json-format-tool.html +84 -0
  556. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Boxed-Types-Serialization.html +491 -0
  557. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-GObject-Serialization.html +385 -0
  558. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Array.html +1188 -0
  559. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-GVariant-Integration.html +318 -0
  560. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Node.html +1803 -0
  561. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-JSON-Object.html +1369 -0
  562. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Serializable-Interface.html +582 -0
  563. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html +215 -0
  564. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.devhelp2 +277 -0
  565. data/vendor/local/share/gtk-doc/html/json-glib/json-glib.html +38 -0
  566. data/vendor/local/share/gtk-doc/html/json-glib/json-streams.html +63 -0
  567. data/vendor/local/share/gtk-doc/html/json-glib/json-tools.html +45 -0
  568. data/vendor/local/share/gtk-doc/html/json-glib/json-validate-tool.html +72 -0
  569. data/vendor/local/share/gtk-doc/html/json-glib/left-insensitive.png +0 -0
  570. data/vendor/local/share/gtk-doc/html/json-glib/left.png +0 -0
  571. data/vendor/local/share/gtk-doc/html/json-glib/license.html +58 -0
  572. data/vendor/local/share/gtk-doc/html/json-glib/right-insensitive.png +0 -0
  573. data/vendor/local/share/gtk-doc/html/json-glib/right.png +0 -0
  574. data/vendor/local/share/gtk-doc/html/json-glib/style.css +476 -0
  575. data/vendor/local/share/gtk-doc/html/json-glib/tools.html +38 -0
  576. data/vendor/local/share/gtk-doc/html/json-glib/up-insensitive.png +0 -0
  577. data/vendor/local/share/gtk-doc/html/json-glib/up.png +0 -0
  578. data/vendor/local/share/license/clutter/COPYING +502 -0
  579. data/vendor/local/share/license/cogl/COPYING +107 -0
  580. data/vendor/local/share/license/json-glib/COPYING +504 -0
  581. data/vendor/local/share/locale/an/LC_MESSAGES/clutter-1.0.mo +0 -0
  582. data/vendor/local/share/locale/an/LC_MESSAGES/cogl.mo +0 -0
  583. data/vendor/local/share/locale/ar/LC_MESSAGES/clutter-1.0.mo +0 -0
  584. data/vendor/local/share/locale/ar/LC_MESSAGES/cogl.mo +0 -0
  585. data/vendor/local/share/locale/as/LC_MESSAGES/clutter-1.0.mo +0 -0
  586. data/vendor/local/share/locale/as/LC_MESSAGES/cogl.mo +0 -0
  587. data/vendor/local/share/locale/as/LC_MESSAGES/json-glib-1.0.mo +0 -0
  588. data/vendor/local/share/locale/ast/LC_MESSAGES/clutter-1.0.mo +0 -0
  589. data/vendor/local/share/locale/ast/LC_MESSAGES/cogl.mo +0 -0
  590. data/vendor/local/share/locale/az_IR/LC_MESSAGES/clutter-1.0.mo +0 -0
  591. data/vendor/local/share/locale/be/LC_MESSAGES/clutter-1.0.mo +0 -0
  592. data/vendor/local/share/locale/be/LC_MESSAGES/cogl.mo +0 -0
  593. data/vendor/local/share/locale/bg/LC_MESSAGES/clutter-1.0.mo +0 -0
  594. data/vendor/local/share/locale/bg/LC_MESSAGES/cogl.mo +0 -0
  595. data/vendor/local/share/locale/bg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  596. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  597. data/vendor/local/share/locale/ca/LC_MESSAGES/clutter-1.0.mo +0 -0
  598. data/vendor/local/share/locale/ca/LC_MESSAGES/cogl.mo +0 -0
  599. data/vendor/local/share/locale/ca/LC_MESSAGES/json-glib-1.0.mo +0 -0
  600. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/clutter-1.0.mo +0 -0
  601. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/cogl.mo +0 -0
  602. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/json-glib-1.0.mo +0 -0
  603. data/vendor/local/share/locale/cs/LC_MESSAGES/clutter-1.0.mo +0 -0
  604. data/vendor/local/share/locale/cs/LC_MESSAGES/cogl.mo +0 -0
  605. data/vendor/local/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo +0 -0
  606. data/vendor/local/share/locale/da/LC_MESSAGES/clutter-1.0.mo +0 -0
  607. data/vendor/local/share/locale/da/LC_MESSAGES/cogl.mo +0 -0
  608. data/vendor/local/share/locale/da/LC_MESSAGES/json-glib-1.0.mo +0 -0
  609. data/vendor/local/share/locale/de/LC_MESSAGES/clutter-1.0.mo +0 -0
  610. data/vendor/local/share/locale/de/LC_MESSAGES/cogl.mo +0 -0
  611. data/vendor/local/share/locale/de/LC_MESSAGES/json-glib-1.0.mo +0 -0
  612. data/vendor/local/share/locale/el/LC_MESSAGES/clutter-1.0.mo +0 -0
  613. data/vendor/local/share/locale/el/LC_MESSAGES/cogl.mo +0 -0
  614. data/vendor/local/share/locale/el/LC_MESSAGES/json-glib-1.0.mo +0 -0
  615. data/vendor/local/share/locale/en_CA/LC_MESSAGES/cogl.mo +0 -0
  616. data/vendor/local/share/locale/en_GB/LC_MESSAGES/clutter-1.0.mo +0 -0
  617. data/vendor/local/share/locale/en_GB/LC_MESSAGES/cogl.mo +0 -0
  618. data/vendor/local/share/locale/en_GB/LC_MESSAGES/json-glib-1.0.mo +0 -0
  619. data/vendor/local/share/locale/eo/LC_MESSAGES/clutter-1.0.mo +0 -0
  620. data/vendor/local/share/locale/eo/LC_MESSAGES/cogl.mo +0 -0
  621. data/vendor/local/share/locale/eo/LC_MESSAGES/json-glib-1.0.mo +0 -0
  622. data/vendor/local/share/locale/es/LC_MESSAGES/clutter-1.0.mo +0 -0
  623. data/vendor/local/share/locale/es/LC_MESSAGES/cogl.mo +0 -0
  624. data/vendor/local/share/locale/es/LC_MESSAGES/json-glib-1.0.mo +0 -0
  625. data/vendor/local/share/locale/et/LC_MESSAGES/json-glib-1.0.mo +0 -0
  626. data/vendor/local/share/locale/eu/LC_MESSAGES/clutter-1.0.mo +0 -0
  627. data/vendor/local/share/locale/eu/LC_MESSAGES/cogl.mo +0 -0
  628. data/vendor/local/share/locale/eu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  629. data/vendor/local/share/locale/fa/LC_MESSAGES/clutter-1.0.mo +0 -0
  630. data/vendor/local/share/locale/fa/LC_MESSAGES/cogl.mo +0 -0
  631. data/vendor/local/share/locale/fi/LC_MESSAGES/clutter-1.0.mo +0 -0
  632. data/vendor/local/share/locale/fr/LC_MESSAGES/clutter-1.0.mo +0 -0
  633. data/vendor/local/share/locale/fr/LC_MESSAGES/cogl.mo +0 -0
  634. data/vendor/local/share/locale/fr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  635. data/vendor/local/share/locale/fur/LC_MESSAGES/json-glib-1.0.mo +0 -0
  636. data/vendor/local/share/locale/gl/LC_MESSAGES/clutter-1.0.mo +0 -0
  637. data/vendor/local/share/locale/gl/LC_MESSAGES/cogl.mo +0 -0
  638. data/vendor/local/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  639. data/vendor/local/share/locale/he/LC_MESSAGES/clutter-1.0.mo +0 -0
  640. data/vendor/local/share/locale/he/LC_MESSAGES/cogl.mo +0 -0
  641. data/vendor/local/share/locale/he/LC_MESSAGES/json-glib-1.0.mo +0 -0
  642. data/vendor/local/share/locale/hi/LC_MESSAGES/clutter-1.0.mo +0 -0
  643. data/vendor/local/share/locale/hi/LC_MESSAGES/cogl.mo +0 -0
  644. data/vendor/local/share/locale/hi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  645. data/vendor/local/share/locale/hu/LC_MESSAGES/clutter-1.0.mo +0 -0
  646. data/vendor/local/share/locale/hu/LC_MESSAGES/cogl.mo +0 -0
  647. data/vendor/local/share/locale/hu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  648. data/vendor/local/share/locale/id/LC_MESSAGES/clutter-1.0.mo +0 -0
  649. data/vendor/local/share/locale/id/LC_MESSAGES/cogl.mo +0 -0
  650. data/vendor/local/share/locale/id/LC_MESSAGES/json-glib-1.0.mo +0 -0
  651. data/vendor/local/share/locale/it/LC_MESSAGES/clutter-1.0.mo +0 -0
  652. data/vendor/local/share/locale/it/LC_MESSAGES/cogl.mo +0 -0
  653. data/vendor/local/share/locale/it/LC_MESSAGES/json-glib-1.0.mo +0 -0
  654. data/vendor/local/share/locale/ja/LC_MESSAGES/clutter-1.0.mo +0 -0
  655. data/vendor/local/share/locale/ja/LC_MESSAGES/cogl.mo +0 -0
  656. data/vendor/local/share/locale/ja/LC_MESSAGES/json-glib-1.0.mo +0 -0
  657. data/vendor/local/share/locale/km/LC_MESSAGES/clutter-1.0.mo +0 -0
  658. data/vendor/local/share/locale/km/LC_MESSAGES/cogl.mo +0 -0
  659. data/vendor/local/share/locale/kn/LC_MESSAGES/clutter-1.0.mo +0 -0
  660. data/vendor/local/share/locale/kn/LC_MESSAGES/cogl.mo +0 -0
  661. data/vendor/local/share/locale/ko/LC_MESSAGES/clutter-1.0.mo +0 -0
  662. data/vendor/local/share/locale/ko/LC_MESSAGES/cogl.mo +0 -0
  663. data/vendor/local/share/locale/ko/LC_MESSAGES/json-glib-1.0.mo +0 -0
  664. data/vendor/local/share/locale/ky/LC_MESSAGES/json-glib-1.0.mo +0 -0
  665. data/vendor/local/share/locale/lt/LC_MESSAGES/clutter-1.0.mo +0 -0
  666. data/vendor/local/share/locale/lt/LC_MESSAGES/cogl.mo +0 -0
  667. data/vendor/local/share/locale/lt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  668. data/vendor/local/share/locale/lv/LC_MESSAGES/clutter-1.0.mo +0 -0
  669. data/vendor/local/share/locale/lv/LC_MESSAGES/cogl.mo +0 -0
  670. data/vendor/local/share/locale/lv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  671. data/vendor/local/share/locale/mk/LC_MESSAGES/clutter-1.0.mo +0 -0
  672. data/vendor/local/share/locale/ml/LC_MESSAGES/clutter-1.0.mo +0 -0
  673. data/vendor/local/share/locale/ml/LC_MESSAGES/cogl.mo +0 -0
  674. data/vendor/local/share/locale/ml/LC_MESSAGES/json-glib-1.0.mo +0 -0
  675. data/vendor/local/share/locale/nb/LC_MESSAGES/clutter-1.0.mo +0 -0
  676. data/vendor/local/share/locale/nb/LC_MESSAGES/cogl.mo +0 -0
  677. data/vendor/local/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo +0 -0
  678. data/vendor/local/share/locale/nl/LC_MESSAGES/clutter-1.0.mo +0 -0
  679. data/vendor/local/share/locale/nl/LC_MESSAGES/cogl.mo +0 -0
  680. data/vendor/local/share/locale/or/LC_MESSAGES/clutter-1.0.mo +0 -0
  681. data/vendor/local/share/locale/or/LC_MESSAGES/cogl.mo +0 -0
  682. data/vendor/local/share/locale/or/LC_MESSAGES/json-glib-1.0.mo +0 -0
  683. data/vendor/local/share/locale/pa/LC_MESSAGES/clutter-1.0.mo +0 -0
  684. data/vendor/local/share/locale/pa/LC_MESSAGES/cogl.mo +0 -0
  685. data/vendor/local/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo +0 -0
  686. data/vendor/local/share/locale/pl/LC_MESSAGES/clutter-1.0.mo +0 -0
  687. data/vendor/local/share/locale/pl/LC_MESSAGES/cogl.mo +0 -0
  688. data/vendor/local/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  689. data/vendor/local/share/locale/ps/LC_MESSAGES/clutter-1.0.mo +0 -0
  690. data/vendor/local/share/locale/pt/LC_MESSAGES/clutter-1.0.mo +0 -0
  691. data/vendor/local/share/locale/pt/LC_MESSAGES/cogl.mo +0 -0
  692. data/vendor/local/share/locale/pt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  693. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/clutter-1.0.mo +0 -0
  694. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/cogl.mo +0 -0
  695. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo +0 -0
  696. data/vendor/local/share/locale/ro/LC_MESSAGES/clutter-1.0.mo +0 -0
  697. data/vendor/local/share/locale/ru/LC_MESSAGES/clutter-1.0.mo +0 -0
  698. data/vendor/local/share/locale/ru/LC_MESSAGES/cogl.mo +0 -0
  699. data/vendor/local/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo +0 -0
  700. data/vendor/local/share/locale/sk/LC_MESSAGES/clutter-1.0.mo +0 -0
  701. data/vendor/local/share/locale/sk/LC_MESSAGES/cogl.mo +0 -0
  702. data/vendor/local/share/locale/sk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  703. data/vendor/local/share/locale/sl/LC_MESSAGES/clutter-1.0.mo +0 -0
  704. data/vendor/local/share/locale/sl/LC_MESSAGES/cogl.mo +0 -0
  705. data/vendor/local/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  706. data/vendor/local/share/locale/sr/LC_MESSAGES/clutter-1.0.mo +0 -0
  707. data/vendor/local/share/locale/sr/LC_MESSAGES/cogl.mo +0 -0
  708. data/vendor/local/share/locale/sr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  709. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/clutter-1.0.mo +0 -0
  710. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/cogl.mo +0 -0
  711. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/json-glib-1.0.mo +0 -0
  712. data/vendor/local/share/locale/sv/LC_MESSAGES/clutter-1.0.mo +0 -0
  713. data/vendor/local/share/locale/sv/LC_MESSAGES/cogl.mo +0 -0
  714. data/vendor/local/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  715. data/vendor/local/share/locale/ta/LC_MESSAGES/clutter-1.0.mo +0 -0
  716. data/vendor/local/share/locale/ta/LC_MESSAGES/cogl.mo +0 -0
  717. data/vendor/local/share/locale/te/LC_MESSAGES/clutter-1.0.mo +0 -0
  718. data/vendor/local/share/locale/te/LC_MESSAGES/cogl.mo +0 -0
  719. data/vendor/local/share/locale/te/LC_MESSAGES/json-glib-1.0.mo +0 -0
  720. data/vendor/local/share/locale/tg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  721. data/vendor/local/share/locale/th/LC_MESSAGES/cogl.mo +0 -0
  722. data/vendor/local/share/locale/tr/LC_MESSAGES/clutter-1.0.mo +0 -0
  723. data/vendor/local/share/locale/tr/LC_MESSAGES/cogl.mo +0 -0
  724. data/vendor/local/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  725. data/vendor/local/share/locale/ug/LC_MESSAGES/clutter-1.0.mo +0 -0
  726. data/vendor/local/share/locale/ug/LC_MESSAGES/cogl.mo +0 -0
  727. data/vendor/local/share/locale/ug/LC_MESSAGES/json-glib-1.0.mo +0 -0
  728. data/vendor/local/share/locale/uk/LC_MESSAGES/clutter-1.0.mo +0 -0
  729. data/vendor/local/share/locale/uk/LC_MESSAGES/cogl.mo +0 -0
  730. data/vendor/local/share/locale/uk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  731. data/vendor/local/share/locale/ur/LC_MESSAGES/clutter-1.0.mo +0 -0
  732. data/vendor/local/share/locale/vi/LC_MESSAGES/cogl.mo +0 -0
  733. data/vendor/local/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  734. data/vendor/local/share/locale/yi/LC_MESSAGES/clutter-1.0.mo +0 -0
  735. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/clutter-1.0.mo +0 -0
  736. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cogl.mo +0 -0
  737. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  738. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/clutter-1.0.mo +0 -0
  739. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/cogl.mo +0 -0
  740. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/json-glib-1.0.mo +0 -0
  741. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/clutter-1.0.mo +0 -0
  742. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/cogl.mo +0 -0
  743. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/json-glib-1.0.mo +0 -0
  744. metadata +869 -0
@@ -0,0 +1,2085 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>Clutter Reference Manual: ClutterTexture</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="Clutter Reference Manual">
8
+ <link rel="up" href="deprecated.html" title="Part IX. Deprecated Classes">
9
+ <link rel="prev" href="ClutterTableLayout.html" title="ClutterTableLayout">
10
+ <link rel="next" href="clutterobjects.html" title="Part X. Clutter Actors and Objects">
11
+ <meta name="generator" content="GTK-Doc V1.20.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#ClutterTexture.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#ClutterTexture.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20
+ <a href="#ClutterTexture.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21
+ <a href="#ClutterTexture.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
22
+ <a href="#ClutterTexture.signals" class="shortcut">Signals</a></span>
23
+ </td>
24
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
25
+ <td><a accesskey="u" href="deprecated.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
26
+ <td><a accesskey="p" href="ClutterTableLayout.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
27
+ <td><a accesskey="n" href="clutterobjects.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
28
+ </tr></table>
29
+ <div class="refentry">
30
+ <a name="ClutterTexture"></a><div class="titlepage"></div>
31
+ <div class="refnamediv"><table width="100%"><tr>
32
+ <td valign="top">
33
+ <h2><span class="refentrytitle"><a name="ClutterTexture.top_of_page"></a>ClutterTexture</span></h2>
34
+ <p>ClutterTexture — An actor for displaying and manipulating images.</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="ClutterTexture.functions"></a><h2>Functions</h2>
40
+ <div class="informaltable"><table width="100%" border="0">
41
+ <colgroup>
42
+ <col width="150px" class="functions_return">
43
+ <col class="functions_name">
44
+ </colgroup>
45
+ <tbody>
46
+ <tr>
47
+ <td class="function_type">
48
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
49
+ </td>
50
+ <td class="function_name">
51
+ <a class="link" href="ClutterTexture.html#clutter-texture-new" title="clutter_texture_new ()">clutter_texture_new</a> <span class="c_punctuation">()</span>
52
+ </td>
53
+ </tr>
54
+ <tr>
55
+ <td class="function_type">
56
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
57
+ </td>
58
+ <td class="function_name">
59
+ <a class="link" href="ClutterTexture.html#clutter-texture-new-from-file" title="clutter_texture_new_from_file ()">clutter_texture_new_from_file</a> <span class="c_punctuation">()</span>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <td class="function_type">
64
+ <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
65
+ </td>
66
+ <td class="function_name">
67
+ <a class="link" href="ClutterTexture.html#clutter-texture-new-from-actor" title="clutter_texture_new_from_actor ()">clutter_texture_new_from_actor</a> <span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="define_keyword">#define</td>
72
+ <td class="function_name"><a class="link" href="ClutterTexture.html#CLUTTER-TEXTURE-ERROR:CAPS" title="CLUTTER_TEXTURE_ERROR">CLUTTER_TEXTURE_ERROR</a></td>
73
+ </tr>
74
+ <tr>
75
+ <td class="function_type">
76
+ <span class="returnvalue">gboolean</span>
77
+ </td>
78
+ <td class="function_name">
79
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-file" title="clutter_texture_set_from_file ()">clutter_texture_set_from_file</a> <span class="c_punctuation">()</span>
80
+ </td>
81
+ </tr>
82
+ <tr>
83
+ <td class="function_type">
84
+ <span class="returnvalue">gboolean</span>
85
+ </td>
86
+ <td class="function_name">
87
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-rgb-data" title="clutter_texture_set_from_rgb_data ()">clutter_texture_set_from_rgb_data</a> <span class="c_punctuation">()</span>
88
+ </td>
89
+ </tr>
90
+ <tr>
91
+ <td class="function_type">
92
+ <span class="returnvalue">gboolean</span>
93
+ </td>
94
+ <td class="function_name">
95
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-yuv-data" title="clutter_texture_set_from_yuv_data ()">clutter_texture_set_from_yuv_data</a> <span class="c_punctuation">()</span>
96
+ </td>
97
+ </tr>
98
+ <tr>
99
+ <td class="function_type">
100
+ <span class="returnvalue">gboolean</span>
101
+ </td>
102
+ <td class="function_name">
103
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-area-from-rgb-data" title="clutter_texture_set_area_from_rgb_data ()">clutter_texture_set_area_from_rgb_data</a> <span class="c_punctuation">()</span>
104
+ </td>
105
+ </tr>
106
+ <tr>
107
+ <td class="function_type">
108
+ <span class="returnvalue">void</span>
109
+ </td>
110
+ <td class="function_name">
111
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-base-size" title="clutter_texture_get_base_size ()">clutter_texture_get_base_size</a> <span class="c_punctuation">()</span>
112
+ </td>
113
+ </tr>
114
+ <tr>
115
+ <td class="function_type">
116
+ <span class="returnvalue">CoglPixelFormat</span>
117
+ </td>
118
+ <td class="function_name">
119
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-pixel-format" title="clutter_texture_get_pixel_format ()">clutter_texture_get_pixel_format</a> <span class="c_punctuation">()</span>
120
+ </td>
121
+ </tr>
122
+ <tr>
123
+ <td class="function_type">
124
+ <span class="returnvalue">gint</span>
125
+ </td>
126
+ <td class="function_name">
127
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-max-tile-waste" title="clutter_texture_get_max_tile_waste ()">clutter_texture_get_max_tile_waste</a> <span class="c_punctuation">()</span>
128
+ </td>
129
+ </tr>
130
+ <tr>
131
+ <td class="function_type">
132
+ <a class="link" href="ClutterTexture.html#ClutterTextureQuality" title="enum ClutterTextureQuality"><span class="returnvalue">ClutterTextureQuality</span></a>
133
+ </td>
134
+ <td class="function_name">
135
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-filter-quality" title="clutter_texture_get_filter_quality ()">clutter_texture_get_filter_quality</a> <span class="c_punctuation">()</span>
136
+ </td>
137
+ </tr>
138
+ <tr>
139
+ <td class="function_type">
140
+ <span class="returnvalue">void</span>
141
+ </td>
142
+ <td class="function_name">
143
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-filter-quality" title="clutter_texture_set_filter_quality ()">clutter_texture_set_filter_quality</a> <span class="c_punctuation">()</span>
144
+ </td>
145
+ </tr>
146
+ <tr>
147
+ <td class="function_type">
148
+ <span class="returnvalue">CoglHandle</span>
149
+ </td>
150
+ <td class="function_name">
151
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-cogl-texture" title="clutter_texture_get_cogl_texture ()">clutter_texture_get_cogl_texture</a> <span class="c_punctuation">()</span>
152
+ </td>
153
+ </tr>
154
+ <tr>
155
+ <td class="function_type">
156
+ <span class="returnvalue">void</span>
157
+ </td>
158
+ <td class="function_name">
159
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-cogl-texture" title="clutter_texture_set_cogl_texture ()">clutter_texture_set_cogl_texture</a> <span class="c_punctuation">()</span>
160
+ </td>
161
+ </tr>
162
+ <tr>
163
+ <td class="function_type">
164
+ <span class="returnvalue">CoglHandle</span>
165
+ </td>
166
+ <td class="function_name">
167
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-cogl-material" title="clutter_texture_get_cogl_material ()">clutter_texture_get_cogl_material</a> <span class="c_punctuation">()</span>
168
+ </td>
169
+ </tr>
170
+ <tr>
171
+ <td class="function_type">
172
+ <span class="returnvalue">void</span>
173
+ </td>
174
+ <td class="function_name">
175
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-cogl-material" title="clutter_texture_set_cogl_material ()">clutter_texture_set_cogl_material</a> <span class="c_punctuation">()</span>
176
+ </td>
177
+ </tr>
178
+ <tr>
179
+ <td class="function_type">
180
+ <span class="returnvalue">gboolean</span>
181
+ </td>
182
+ <td class="function_name">
183
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-sync-size" title="clutter_texture_get_sync_size ()">clutter_texture_get_sync_size</a> <span class="c_punctuation">()</span>
184
+ </td>
185
+ </tr>
186
+ <tr>
187
+ <td class="function_type">
188
+ <span class="returnvalue">void</span>
189
+ </td>
190
+ <td class="function_name">
191
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-sync-size" title="clutter_texture_set_sync_size ()">clutter_texture_set_sync_size</a> <span class="c_punctuation">()</span>
192
+ </td>
193
+ </tr>
194
+ <tr>
195
+ <td class="function_type">
196
+ <span class="returnvalue">void</span>
197
+ </td>
198
+ <td class="function_name">
199
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-repeat" title="clutter_texture_get_repeat ()">clutter_texture_get_repeat</a> <span class="c_punctuation">()</span>
200
+ </td>
201
+ </tr>
202
+ <tr>
203
+ <td class="function_type">
204
+ <span class="returnvalue">void</span>
205
+ </td>
206
+ <td class="function_name">
207
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-repeat" title="clutter_texture_set_repeat ()">clutter_texture_set_repeat</a> <span class="c_punctuation">()</span>
208
+ </td>
209
+ </tr>
210
+ <tr>
211
+ <td class="function_type">
212
+ <span class="returnvalue">gboolean</span>
213
+ </td>
214
+ <td class="function_name">
215
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-keep-aspect-ratio" title="clutter_texture_get_keep_aspect_ratio ()">clutter_texture_get_keep_aspect_ratio</a> <span class="c_punctuation">()</span>
216
+ </td>
217
+ </tr>
218
+ <tr>
219
+ <td class="function_type">
220
+ <span class="returnvalue">void</span>
221
+ </td>
222
+ <td class="function_name">
223
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-keep-aspect-ratio" title="clutter_texture_set_keep_aspect_ratio ()">clutter_texture_set_keep_aspect_ratio</a> <span class="c_punctuation">()</span>
224
+ </td>
225
+ </tr>
226
+ <tr>
227
+ <td class="function_type">
228
+ <span class="returnvalue">gboolean</span>
229
+ </td>
230
+ <td class="function_name">
231
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-load-async" title="clutter_texture_get_load_async ()">clutter_texture_get_load_async</a> <span class="c_punctuation">()</span>
232
+ </td>
233
+ </tr>
234
+ <tr>
235
+ <td class="function_type">
236
+ <span class="returnvalue">void</span>
237
+ </td>
238
+ <td class="function_name">
239
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-load-async" title="clutter_texture_set_load_async ()">clutter_texture_set_load_async</a> <span class="c_punctuation">()</span>
240
+ </td>
241
+ </tr>
242
+ <tr>
243
+ <td class="function_type">
244
+ <span class="returnvalue">gboolean</span>
245
+ </td>
246
+ <td class="function_name">
247
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-load-data-async" title="clutter_texture_get_load_data_async ()">clutter_texture_get_load_data_async</a> <span class="c_punctuation">()</span>
248
+ </td>
249
+ </tr>
250
+ <tr>
251
+ <td class="function_type">
252
+ <span class="returnvalue">void</span>
253
+ </td>
254
+ <td class="function_name">
255
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-load-data-async" title="clutter_texture_set_load_data_async ()">clutter_texture_set_load_data_async</a> <span class="c_punctuation">()</span>
256
+ </td>
257
+ </tr>
258
+ <tr>
259
+ <td class="function_type">
260
+ <span class="returnvalue">gboolean</span>
261
+ </td>
262
+ <td class="function_name">
263
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-pick-with-alpha" title="clutter_texture_get_pick_with_alpha ()">clutter_texture_get_pick_with_alpha</a> <span class="c_punctuation">()</span>
264
+ </td>
265
+ </tr>
266
+ <tr>
267
+ <td class="function_type">
268
+ <span class="returnvalue">void</span>
269
+ </td>
270
+ <td class="function_name">
271
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-pick-with-alpha" title="clutter_texture_set_pick_with_alpha ()">clutter_texture_set_pick_with_alpha</a> <span class="c_punctuation">()</span>
272
+ </td>
273
+ </tr>
274
+ </tbody>
275
+ </table></div>
276
+ </div>
277
+ <div class="refsect1">
278
+ <a name="ClutterTexture.properties"></a><h2>Properties</h2>
279
+ <div class="informaltable"><table border="0">
280
+ <colgroup>
281
+ <col width="150px" class="properties_type">
282
+ <col width="300px" class="properties_name">
283
+ <col width="200px" class="properties_flags">
284
+ </colgroup>
285
+ <tbody>
286
+ <tr>
287
+ <td class="property_type">
288
+ <span class="type">CoglHandle</span> *</td>
289
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--cogl-material" title="The “cogl-material” property">cogl-material</a></td>
290
+ <td class="property_flags">Read / Write</td>
291
+ </tr>
292
+ <tr>
293
+ <td class="property_type">
294
+ <span class="type">CoglHandle</span> *</td>
295
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--cogl-texture" title="The “cogl-texture” property">cogl-texture</a></td>
296
+ <td class="property_flags">Read / Write</td>
297
+ </tr>
298
+ <tr>
299
+ <td class="property_type"><span class="type">gboolean</span></td>
300
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--disable-slicing" title="The “disable-slicing” property">disable-slicing</a></td>
301
+ <td class="property_flags">Read / Write / Construct Only</td>
302
+ </tr>
303
+ <tr>
304
+ <td class="property_type">
305
+ <span class="type">gchar</span> *</td>
306
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--filename" title="The “filename” property">filename</a></td>
307
+ <td class="property_flags">Read / Write</td>
308
+ </tr>
309
+ <tr>
310
+ <td class="property_type"><a class="link" href="ClutterTexture.html#ClutterTextureQuality" title="enum ClutterTextureQuality"><span class="type">ClutterTextureQuality</span></a></td>
311
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--filter-quality" title="The “filter-quality” property">filter-quality</a></td>
312
+ <td class="property_flags">Read / Write / Construct</td>
313
+ </tr>
314
+ <tr>
315
+ <td class="property_type"><span class="type">gboolean</span></td>
316
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--keep-aspect-ratio" title="The “keep-aspect-ratio” property">keep-aspect-ratio</a></td>
317
+ <td class="property_flags">Read / Write</td>
318
+ </tr>
319
+ <tr>
320
+ <td class="property_type"><span class="type">gboolean</span></td>
321
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--load-async" title="The “load-async” property">load-async</a></td>
322
+ <td class="property_flags">Write</td>
323
+ </tr>
324
+ <tr>
325
+ <td class="property_type"><span class="type">gboolean</span></td>
326
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--load-data-async" title="The “load-data-async” property">load-data-async</a></td>
327
+ <td class="property_flags">Write</td>
328
+ </tr>
329
+ <tr>
330
+ <td class="property_type"><span class="type">gboolean</span></td>
331
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--pick-with-alpha" title="The “pick-with-alpha” property">pick-with-alpha</a></td>
332
+ <td class="property_flags">Read / Write</td>
333
+ </tr>
334
+ <tr>
335
+ <td class="property_type"><span class="type">CoglPixelFormat</span></td>
336
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--pixel-format" title="The “pixel-format” property">pixel-format</a></td>
337
+ <td class="property_flags">Read</td>
338
+ </tr>
339
+ <tr>
340
+ <td class="property_type"><span class="type">gboolean</span></td>
341
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--repeat-x" title="The “repeat-x” property">repeat-x</a></td>
342
+ <td class="property_flags">Read / Write</td>
343
+ </tr>
344
+ <tr>
345
+ <td class="property_type"><span class="type">gboolean</span></td>
346
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--repeat-y" title="The “repeat-y” property">repeat-y</a></td>
347
+ <td class="property_flags">Read / Write</td>
348
+ </tr>
349
+ <tr>
350
+ <td class="property_type"><span class="type">gboolean</span></td>
351
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--sync-size" title="The “sync-size” property">sync-size</a></td>
352
+ <td class="property_flags">Read / Write</td>
353
+ </tr>
354
+ <tr>
355
+ <td class="property_type"><span class="type">gint</span></td>
356
+ <td class="property_name"><a class="link" href="ClutterTexture.html#ClutterTexture--tile-waste" title="The “tile-waste” property">tile-waste</a></td>
357
+ <td class="property_flags">Read</td>
358
+ </tr>
359
+ </tbody>
360
+ </table></div>
361
+ </div>
362
+ <div class="refsect1">
363
+ <a name="ClutterTexture.signals"></a><h2>Signals</h2>
364
+ <div class="informaltable"><table border="0">
365
+ <colgroup>
366
+ <col width="150px" class="signals_return">
367
+ <col width="300px" class="signals_name">
368
+ <col width="200px" class="signals_flags">
369
+ </colgroup>
370
+ <tbody>
371
+ <tr>
372
+ <td class="signal_type"><span class="returnvalue">void</span></td>
373
+ <td class="signal_name"><a class="link" href="ClutterTexture.html#ClutterTexture-load-finished" title="The “load-finished” signal">load-finished</a></td>
374
+ <td class="signal_flags">Run Last</td>
375
+ </tr>
376
+ <tr>
377
+ <td class="signal_type"><span class="returnvalue">void</span></td>
378
+ <td class="signal_name"><a class="link" href="ClutterTexture.html#ClutterTexture-pixbuf-change" title="The “pixbuf-change” signal">pixbuf-change</a></td>
379
+ <td class="signal_flags">Run Last</td>
380
+ </tr>
381
+ <tr>
382
+ <td class="signal_type"><span class="returnvalue">void</span></td>
383
+ <td class="signal_name"><a class="link" href="ClutterTexture.html#ClutterTexture-size-change" title="The “size-change” signal">size-change</a></td>
384
+ <td class="signal_flags">Run Last</td>
385
+ </tr>
386
+ </tbody>
387
+ </table></div>
388
+ </div>
389
+ <div class="refsect1">
390
+ <a name="ClutterTexture.other"></a><h2>Types and Values</h2>
391
+ <div class="informaltable"><table width="100%" border="0">
392
+ <colgroup>
393
+ <col width="150px" class="name">
394
+ <col class="description">
395
+ </colgroup>
396
+ <tbody>
397
+ <tr>
398
+ <td class="datatype_keyword">struct</td>
399
+ <td class="function_name"><a class="link" href="ClutterTexture.html#ClutterTexture-struct" title="struct ClutterTexture">ClutterTexture</a></td>
400
+ </tr>
401
+ <tr>
402
+ <td class="datatype_keyword">struct</td>
403
+ <td class="function_name"><a class="link" href="ClutterTexture.html#ClutterTextureClass" title="struct ClutterTextureClass">ClutterTextureClass</a></td>
404
+ </tr>
405
+ <tr>
406
+ <td class="datatype_keyword">enum</td>
407
+ <td class="function_name"><a class="link" href="ClutterTexture.html#ClutterTextureFlags" title="enum ClutterTextureFlags">ClutterTextureFlags</a></td>
408
+ </tr>
409
+ <tr>
410
+ <td class="datatype_keyword">enum</td>
411
+ <td class="function_name"><a class="link" href="ClutterTexture.html#ClutterTextureQuality" title="enum ClutterTextureQuality">ClutterTextureQuality</a></td>
412
+ </tr>
413
+ <tr>
414
+ <td class="datatype_keyword">enum</td>
415
+ <td class="function_name"><a class="link" href="ClutterTexture.html#ClutterTextureError" title="enum ClutterTextureError">ClutterTextureError</a></td>
416
+ </tr>
417
+ </tbody>
418
+ </table></div>
419
+ </div>
420
+ <div class="refsect1">
421
+ <a name="ClutterTexture.object-hierarchy"></a><h2>Object Hierarchy</h2>
422
+ <pre class="screen"> GObject
423
+ <span class="lineart">╰──</span> GInitiallyUnowned
424
+ <span class="lineart">╰──</span> <a class="link" href="ClutterActor.html" title="ClutterActor">ClutterActor</a>
425
+ <span class="lineart">╰──</span> ClutterTexture
426
+ <span class="lineart">╰──</span> <a class="link" href="ClutterCairoTexture.html" title="ClutterCairoTexture">ClutterCairoTexture</a>
427
+ </pre>
428
+ </div>
429
+ <div class="refsect1">
430
+ <a name="ClutterTexture.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
431
+ <p>
432
+ ClutterTexture implements
433
+ <a class="link" href="ClutterContainer.html" title="ClutterContainer">ClutterContainer</a>, <a class="link" href="ClutterScriptable.html" title="ClutterScriptable">ClutterScriptable</a>, <a class="link" href="ClutterAnimatable.html" title="ClutterAnimatable">ClutterAnimatable</a> and AtkImplementorIface.</p>
434
+ </div>
435
+ <div class="refsect1">
436
+ <a name="ClutterTexture.description"></a><h2>Description</h2>
437
+ <p><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> is a base class for displaying and manipulating pixel
438
+ buffer type data.</p>
439
+ <p>The <a class="link" href="ClutterTexture.html#clutter-texture-set-from-rgb-data" title="clutter_texture_set_from_rgb_data ()"><code class="function">clutter_texture_set_from_rgb_data()</code></a> and
440
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-file" title="clutter_texture_set_from_file ()"><code class="function">clutter_texture_set_from_file()</code></a> functions are used to copy image
441
+ data into texture memory and subsequently realize the texture.</p>
442
+ <p>Note: a ClutterTexture will scale its contents to fit the bounding
443
+ box requested using <a class="link" href="ClutterActor.html#clutter-actor-set-size" title="clutter_actor_set_size ()"><code class="function">clutter_actor_set_size()</code></a>. To display an area of
444
+ a texture without scaling, you should set the clip area using
445
+ <a class="link" href="ClutterActor.html#clutter-actor-set-clip" title="clutter_actor_set_clip ()"><code class="function">clutter_actor_set_clip()</code></a>.</p>
446
+ <p>The <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> API is deprecated since Clutter 1.12. It is strongly
447
+ recommended to use <a class="link" href="ClutterImage.html" title="ClutterImage"><span class="type">ClutterImage</span></a> instead.</p>
448
+ </div>
449
+ <div class="refsect1">
450
+ <a name="ClutterTexture.functions_details"></a><h2>Functions</h2>
451
+ <div class="refsect2">
452
+ <a name="clutter-texture-new"></a><h3>clutter_texture_new ()</h3>
453
+ <pre class="programlisting"><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
454
+ clutter_texture_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
455
+ <div class="warning"><p><code class="literal">clutter_texture_new</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
456
+ <p>Creates a new empty <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> object.</p>
457
+ <div class="refsect3">
458
+ <a name="id-1.10.20.10.2.6"></a><h4>Returns</h4>
459
+ <p> A newly created <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> object.</p>
460
+ <p></p>
461
+ </div>
462
+ </div>
463
+ <hr>
464
+ <div class="refsect2">
465
+ <a name="clutter-texture-new-from-file"></a><h3>clutter_texture_new_from_file ()</h3>
466
+ <pre class="programlisting"><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
467
+ clutter_texture_new_from_file (<em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>,
468
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
469
+ <div class="warning"><p><code class="literal">clutter_texture_new_from_file</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
470
+ <p>Creates a new ClutterTexture actor to display the image contained a
471
+ file. If the image failed to load then NULL is returned and <em class="parameter"><code>error</code></em>
472
+
473
+ is set.</p>
474
+ <div class="refsect3">
475
+ <a name="id-1.10.20.10.3.7"></a><h4>Parameters</h4>
476
+ <div class="informaltable"><table width="100%" border="0">
477
+ <colgroup>
478
+ <col width="150px" class="parameters_name">
479
+ <col class="parameters_description">
480
+ <col width="200px" class="parameters_annotations">
481
+ </colgroup>
482
+ <tbody>
483
+ <tr>
484
+ <td class="parameter_name"><p>filename</p></td>
485
+ <td class="parameter_description"><p>The name of an image file to load.</p></td>
486
+ <td class="parameter_annotations"> </td>
487
+ </tr>
488
+ <tr>
489
+ <td class="parameter_name"><p>error</p></td>
490
+ <td class="parameter_description"><p>Return locatoin for an error.</p></td>
491
+ <td class="parameter_annotations"> </td>
492
+ </tr>
493
+ </tbody>
494
+ </table></div>
495
+ </div>
496
+ <div class="refsect3">
497
+ <a name="id-1.10.20.10.3.8"></a><h4>Returns</h4>
498
+ <p> A newly created <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> object or NULL on
499
+ error.</p>
500
+ <p></p>
501
+ </div>
502
+ <p class="since">Since 0.8</p>
503
+ </div>
504
+ <hr>
505
+ <div class="refsect2">
506
+ <a name="clutter-texture-new-from-actor"></a><h3>clutter_texture_new_from_actor ()</h3>
507
+ <pre class="programlisting"><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="returnvalue">ClutterActor</span></a> *
508
+ clutter_texture_new_from_actor (<em class="parameter"><code><a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> *actor</code></em>);</pre>
509
+ <div class="warning">
510
+ <p><code class="literal">clutter_texture_new_from_actor</code> has been deprecated since version 1.8 and should not be used in newly-written code.</p>
511
+ <p>Use the <a class="link" href="ClutterOffscreenEffect.html" title="ClutterOffscreenEffect"><span class="type">ClutterOffscreenEffect</span></a> and <a class="link" href="ClutterShaderEffect.html" title="ClutterShaderEffect"><span class="type">ClutterShaderEffect</span></a>
512
+ directly on the intended <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a> to replace the functionality of
513
+ this function.</p>
514
+ </div>
515
+ <p>Creates a new <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> object with its source a prexisting
516
+ actor (and associated children). The textures content will contain
517
+ 'live' redirected output of the actors scene.</p>
518
+ <p>Note this function is intented as a utility call for uniformly applying
519
+ shaders to groups and other potential visual effects. It requires that
520
+ the <a class="link" href="clutter-Features.html#CLUTTER-FEATURE-OFFSCREEN:CAPS"><code class="literal">CLUTTER_FEATURE_OFFSCREEN</code></a> feature is supported by the current backend
521
+ and the target system.</p>
522
+ <p>Some tips on usage:</p>
523
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
524
+ <li class="listitem"><p>The source actor must be visible</p></li>
525
+ <li class="listitem"><p>The source actor must have a parent in order for it to be
526
+ allocated a size from the layouting mechanism. If the source
527
+ actor does not have a parent when this function is called then
528
+ the ClutterTexture will adopt it and allocate it at its
529
+ preferred size. Using this you can clone an actor that is
530
+ otherwise not displayed. Because of this feature if you do
531
+ intend to display the source actor then you must make sure that
532
+ the actor is parented before calling
533
+ <a class="link" href="ClutterTexture.html#clutter-texture-new-from-actor" title="clutter_texture_new_from_actor ()"><code class="function">clutter_texture_new_from_actor()</code></a> or that you unparent it before
534
+ adding it to a container.</p></li>
535
+ <li class="listitem"><p>When getting the image for the clone texture, Clutter
536
+ will attempt to render the source actor exactly as it would
537
+ appear if it was rendered on screen. The source actor's parent
538
+ transformations are taken into account. Therefore if your
539
+ source actor is rotated along the X or Y axes so that it has
540
+ some depth, the texture will appear differently depending on
541
+ the on-screen location of the source actor. While painting the
542
+ source actor, Clutter will set up a temporary asymmetric
543
+ perspective matrix as the projection matrix so that the source
544
+ actor will be projected as if a small section of the screen was
545
+ being viewed. Before version 0.8.2, an orthogonal identity
546
+ projection was used which meant that the source actor would be
547
+ clipped if any part of it was not on the zero Z-plane.</p></li>
548
+ <li class="listitem"><p>Avoid reparenting the source with the created texture.</p></li>
549
+ <li class="listitem"><p>A group can be padded with a transparent rectangle as to
550
+ provide a border to contents for shader output (blurring text
551
+ for example).</p></li>
552
+ <li class="listitem"><p>The texture will automatically resize to contain a further
553
+ transformed source. However, this involves overhead and can be
554
+ avoided by placing the source actor in a bounding group
555
+ sized large enough to contain any child tranformations.</p></li>
556
+ <li class="listitem"><p>Uploading pixel data to the texture (e.g by using
557
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-file" title="clutter_texture_set_from_file ()"><code class="function">clutter_texture_set_from_file()</code></a>) will destroy the offscreen texture
558
+ data and end redirection.</p></li>
559
+ <li class="listitem"><p>cogl_texture_get_data() with the handle returned by
560
+ <a class="link" href="ClutterTexture.html#clutter-texture-get-cogl-texture" title="clutter_texture_get_cogl_texture ()"><code class="function">clutter_texture_get_cogl_texture()</code></a> can be used to read the
561
+ offscreen texture pixels into a pixbuf.&lt;/para&gt;</p></li>
562
+ </ul></div>
563
+ <div class="refsect3">
564
+ <a name="id-1.10.20.10.4.10"></a><h4>Parameters</h4>
565
+ <div class="informaltable"><table width="100%" border="0">
566
+ <colgroup>
567
+ <col width="150px" class="parameters_name">
568
+ <col class="parameters_description">
569
+ <col width="200px" class="parameters_annotations">
570
+ </colgroup>
571
+ <tbody><tr>
572
+ <td class="parameter_name"><p>actor</p></td>
573
+ <td class="parameter_description"><p>A source <a class="link" href="ClutterActor.html" title="ClutterActor"><span class="type">ClutterActor</span></a></p></td>
574
+ <td class="parameter_annotations"> </td>
575
+ </tr></tbody>
576
+ </table></div>
577
+ </div>
578
+ <div class="refsect3">
579
+ <a name="id-1.10.20.10.4.11"></a><h4>Returns</h4>
580
+ <p> A newly created <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> object, or <code class="literal">NULL</code> on failure.</p>
581
+ <p></p>
582
+ </div>
583
+ <p class="since">Since 0.6</p>
584
+ </div>
585
+ <hr>
586
+ <div class="refsect2">
587
+ <a name="CLUTTER-TEXTURE-ERROR:CAPS"></a><h3>CLUTTER_TEXTURE_ERROR</h3>
588
+ <pre class="programlisting">#define CLUTTER_TEXTURE_ERROR (clutter_texture_error_quark ())
589
+ </pre>
590
+ <p>Error domain for <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> errors</p>
591
+ <p class="since">Since 0.4</p>
592
+ </div>
593
+ <hr>
594
+ <div class="refsect2">
595
+ <a name="clutter-texture-set-from-file"></a><h3>clutter_texture_set_from_file ()</h3>
596
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
597
+ clutter_texture_set_from_file (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
598
+ <em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>,
599
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
600
+ <div class="warning"><p><code class="literal">clutter_texture_set_from_file</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
601
+ <p>Sets the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> image data from an image file. In case of
602
+ failure, <code class="literal">FALSE</code> is returned and <em class="parameter"><code>error</code></em>
603
+ is set.</p>
604
+ <p>If <a class="link" href="ClutterTexture.html#ClutterTexture--load-async" title="The “load-async” property"><span class="type">“load-async”</span></a> is set to <code class="literal">TRUE</code>, this function
605
+ will return as soon as possible, and the actual image loading
606
+ from disk will be performed asynchronously. <a class="link" href="ClutterTexture.html#ClutterTexture-size-change" title="The “size-change” signal"><span class="type">“size-change”</span></a>
607
+ will be emitten when the size of the texture is available and
608
+ <a class="link" href="ClutterTexture.html#ClutterTexture-load-finished" title="The “load-finished” signal"><span class="type">“load-finished”</span></a> will be emitted when the image has been
609
+ loaded or if an error occurred.</p>
610
+ <div class="refsect3">
611
+ <a name="id-1.10.20.10.6.8"></a><h4>Parameters</h4>
612
+ <div class="informaltable"><table width="100%" border="0">
613
+ <colgroup>
614
+ <col width="150px" class="parameters_name">
615
+ <col class="parameters_description">
616
+ <col width="200px" class="parameters_annotations">
617
+ </colgroup>
618
+ <tbody>
619
+ <tr>
620
+ <td class="parameter_name"><p>texture</p></td>
621
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
622
+ <td class="parameter_annotations"> </td>
623
+ </tr>
624
+ <tr>
625
+ <td class="parameter_name"><p>filename</p></td>
626
+ <td class="parameter_description"><p>The filename of the image in GLib file name encoding</p></td>
627
+ <td class="parameter_annotations"> </td>
628
+ </tr>
629
+ <tr>
630
+ <td class="parameter_name"><p>error</p></td>
631
+ <td class="parameter_description"><p>Return location for a <span class="type">GError</span>, or <code class="literal">NULL</code></p></td>
632
+ <td class="parameter_annotations"> </td>
633
+ </tr>
634
+ </tbody>
635
+ </table></div>
636
+ </div>
637
+ <div class="refsect3">
638
+ <a name="id-1.10.20.10.6.9"></a><h4>Returns</h4>
639
+ <p> <code class="literal">TRUE</code> if the image was successfully loaded and set</p>
640
+ <p></p>
641
+ </div>
642
+ <p class="since">Since 0.8</p>
643
+ </div>
644
+ <hr>
645
+ <div class="refsect2">
646
+ <a name="clutter-texture-set-from-rgb-data"></a><h3>clutter_texture_set_from_rgb_data ()</h3>
647
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
648
+ clutter_texture_set_from_rgb_data (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
649
+ <em class="parameter"><code>const <span class="type">guchar</span> *data</code></em>,
650
+ <em class="parameter"><code><span class="type">gboolean</span> has_alpha</code></em>,
651
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
652
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
653
+ <em class="parameter"><code><span class="type">gint</span> rowstride</code></em>,
654
+ <em class="parameter"><code><span class="type">gint</span> bpp</code></em>,
655
+ <em class="parameter"><code><a class="link" href="ClutterTexture.html#ClutterTextureFlags" title="enum ClutterTextureFlags"><span class="type">ClutterTextureFlags</span></a> flags</code></em>,
656
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
657
+ <div class="warning"><p><code class="literal">clutter_texture_set_from_rgb_data</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
658
+ <p>Sets <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> image data.</p>
659
+ <div class="refsect3">
660
+ <a name="id-1.10.20.10.7.7"></a><h4>Parameters</h4>
661
+ <div class="informaltable"><table width="100%" border="0">
662
+ <colgroup>
663
+ <col width="150px" class="parameters_name">
664
+ <col class="parameters_description">
665
+ <col width="200px" class="parameters_annotations">
666
+ </colgroup>
667
+ <tbody>
668
+ <tr>
669
+ <td class="parameter_name"><p>texture</p></td>
670
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
671
+ <td class="parameter_annotations"> </td>
672
+ </tr>
673
+ <tr>
674
+ <td class="parameter_name"><p>data</p></td>
675
+ <td class="parameter_description"><p> image data in RGBA type colorspace. </p></td>
676
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>]</span></td>
677
+ </tr>
678
+ <tr>
679
+ <td class="parameter_name"><p>has_alpha</p></td>
680
+ <td class="parameter_description"><p>set to <code class="literal">TRUE</code> if image data has an alpha channel.</p></td>
681
+ <td class="parameter_annotations"> </td>
682
+ </tr>
683
+ <tr>
684
+ <td class="parameter_name"><p>width</p></td>
685
+ <td class="parameter_description"><p>width in pixels of image data.</p></td>
686
+ <td class="parameter_annotations"> </td>
687
+ </tr>
688
+ <tr>
689
+ <td class="parameter_name"><p>height</p></td>
690
+ <td class="parameter_description"><p>height in pixels of image data</p></td>
691
+ <td class="parameter_annotations"> </td>
692
+ </tr>
693
+ <tr>
694
+ <td class="parameter_name"><p>rowstride</p></td>
695
+ <td class="parameter_description"><p>distance in bytes between row starts.</p></td>
696
+ <td class="parameter_annotations"> </td>
697
+ </tr>
698
+ <tr>
699
+ <td class="parameter_name"><p>bpp</p></td>
700
+ <td class="parameter_description"><p>bytes per pixel (currently only 3 and 4 supported, depending
701
+ on the value of <em class="parameter"><code>has_alpha</code></em>
702
+ )</p></td>
703
+ <td class="parameter_annotations"> </td>
704
+ </tr>
705
+ <tr>
706
+ <td class="parameter_name"><p>flags</p></td>
707
+ <td class="parameter_description"><p><a class="link" href="ClutterTexture.html#ClutterTextureFlags" title="enum ClutterTextureFlags"><span class="type">ClutterTextureFlags</span></a></p></td>
708
+ <td class="parameter_annotations"> </td>
709
+ </tr>
710
+ <tr>
711
+ <td class="parameter_name"><p>error</p></td>
712
+ <td class="parameter_description"><p>return location for a <span class="type">GError</span>, or <code class="literal">NULL</code>.</p></td>
713
+ <td class="parameter_annotations"> </td>
714
+ </tr>
715
+ </tbody>
716
+ </table></div>
717
+ </div>
718
+ <div class="refsect3">
719
+ <a name="id-1.10.20.10.7.8"></a><h4>Returns</h4>
720
+ <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> on failure.</p>
721
+ <p></p>
722
+ </div>
723
+ <p class="since">Since 0.4</p>
724
+ </div>
725
+ <hr>
726
+ <div class="refsect2">
727
+ <a name="clutter-texture-set-from-yuv-data"></a><h3>clutter_texture_set_from_yuv_data ()</h3>
728
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
729
+ clutter_texture_set_from_yuv_data (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
730
+ <em class="parameter"><code>const <span class="type">guchar</span> *data</code></em>,
731
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
732
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
733
+ <em class="parameter"><code><a class="link" href="ClutterTexture.html#ClutterTextureFlags" title="enum ClutterTextureFlags"><span class="type">ClutterTextureFlags</span></a> flags</code></em>,
734
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
735
+ <div class="warning">
736
+ <p><code class="literal">clutter_texture_set_from_yuv_data</code> has been deprecated since version 1.10 and should not be used in newly-written code.</p>
737
+ <p>Use <a class="link" href="ClutterTexture.html#clutter-texture-get-cogl-material" title="clutter_texture_get_cogl_material ()"><code class="function">clutter_texture_get_cogl_material()</code></a> and
738
+ the Cogl API to install a fragment shader for decoding YUV
739
+ formats on the GPU</p>
740
+ </div>
741
+ <p>Sets a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> from YUV image data. If an error occurred,
742
+ <code class="literal">FALSE</code> is returned and <em class="parameter"><code>error</code></em>
743
+ is set.</p>
744
+ <p>The YUV support depends on the driver; the format supported by the
745
+ few drivers exposing this capability are not really useful.</p>
746
+ <p>The proper way to convert image data in any YUV colorspace to any
747
+ RGB colorspace is to use a fragment shader associated with the
748
+ <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> material.</p>
749
+ <div class="refsect3">
750
+ <a name="id-1.10.20.10.8.9"></a><h4>Parameters</h4>
751
+ <div class="informaltable"><table width="100%" border="0">
752
+ <colgroup>
753
+ <col width="150px" class="parameters_name">
754
+ <col class="parameters_description">
755
+ <col width="200px" class="parameters_annotations">
756
+ </colgroup>
757
+ <tbody>
758
+ <tr>
759
+ <td class="parameter_name"><p>texture</p></td>
760
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
761
+ <td class="parameter_annotations"> </td>
762
+ </tr>
763
+ <tr>
764
+ <td class="parameter_name"><p>data</p></td>
765
+ <td class="parameter_description"><p> Image data in YUV type colorspace. </p></td>
766
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>]</span></td>
767
+ </tr>
768
+ <tr>
769
+ <td class="parameter_name"><p>width</p></td>
770
+ <td class="parameter_description"><p>Width in pixels of image data.</p></td>
771
+ <td class="parameter_annotations"> </td>
772
+ </tr>
773
+ <tr>
774
+ <td class="parameter_name"><p>height</p></td>
775
+ <td class="parameter_description"><p>Height in pixels of image data</p></td>
776
+ <td class="parameter_annotations"> </td>
777
+ </tr>
778
+ <tr>
779
+ <td class="parameter_name"><p>flags</p></td>
780
+ <td class="parameter_description"><p><a class="link" href="ClutterTexture.html#ClutterTextureFlags" title="enum ClutterTextureFlags"><span class="type">ClutterTextureFlags</span></a></p></td>
781
+ <td class="parameter_annotations"> </td>
782
+ </tr>
783
+ <tr>
784
+ <td class="parameter_name"><p>error</p></td>
785
+ <td class="parameter_description"><p>Return location for a <span class="type">GError</span>, or <code class="literal">NULL</code>.</p></td>
786
+ <td class="parameter_annotations"> </td>
787
+ </tr>
788
+ </tbody>
789
+ </table></div>
790
+ </div>
791
+ <div class="refsect3">
792
+ <a name="id-1.10.20.10.8.10"></a><h4>Returns</h4>
793
+ <p> <code class="literal">TRUE</code> if the texture was successfully updated</p>
794
+ <p></p>
795
+ </div>
796
+ <p class="since">Since 0.4</p>
797
+ </div>
798
+ <hr>
799
+ <div class="refsect2">
800
+ <a name="clutter-texture-set-area-from-rgb-data"></a><h3>clutter_texture_set_area_from_rgb_data ()</h3>
801
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
802
+ clutter_texture_set_area_from_rgb_data
803
+ (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
804
+ <em class="parameter"><code>const <span class="type">guchar</span> *data</code></em>,
805
+ <em class="parameter"><code><span class="type">gboolean</span> has_alpha</code></em>,
806
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
807
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
808
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
809
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
810
+ <em class="parameter"><code><span class="type">gint</span> rowstride</code></em>,
811
+ <em class="parameter"><code><span class="type">gint</span> bpp</code></em>,
812
+ <em class="parameter"><code><a class="link" href="ClutterTexture.html#ClutterTextureFlags" title="enum ClutterTextureFlags"><span class="type">ClutterTextureFlags</span></a> flags</code></em>,
813
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
814
+ <div class="warning"><p><code class="literal">clutter_texture_set_area_from_rgb_data</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
815
+ <p>Updates a sub-region of the pixel data in a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a>.</p>
816
+ <div class="refsect3">
817
+ <a name="id-1.10.20.10.9.7"></a><h4>Parameters</h4>
818
+ <div class="informaltable"><table width="100%" border="0">
819
+ <colgroup>
820
+ <col width="150px" class="parameters_name">
821
+ <col class="parameters_description">
822
+ <col width="200px" class="parameters_annotations">
823
+ </colgroup>
824
+ <tbody>
825
+ <tr>
826
+ <td class="parameter_name"><p>texture</p></td>
827
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
828
+ <td class="parameter_annotations"> </td>
829
+ </tr>
830
+ <tr>
831
+ <td class="parameter_name"><p>data</p></td>
832
+ <td class="parameter_description"><p> Image data in RGB type colorspace. </p></td>
833
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>]</span></td>
834
+ </tr>
835
+ <tr>
836
+ <td class="parameter_name"><p>has_alpha</p></td>
837
+ <td class="parameter_description"><p>Set to TRUE if image data has an alpha channel.</p></td>
838
+ <td class="parameter_annotations"> </td>
839
+ </tr>
840
+ <tr>
841
+ <td class="parameter_name"><p>x</p></td>
842
+ <td class="parameter_description"><p>X coordinate of upper left corner of region to update.</p></td>
843
+ <td class="parameter_annotations"> </td>
844
+ </tr>
845
+ <tr>
846
+ <td class="parameter_name"><p>y</p></td>
847
+ <td class="parameter_description"><p>Y coordinate of upper left corner of region to update.</p></td>
848
+ <td class="parameter_annotations"> </td>
849
+ </tr>
850
+ <tr>
851
+ <td class="parameter_name"><p>width</p></td>
852
+ <td class="parameter_description"><p>Width in pixels of region to update.</p></td>
853
+ <td class="parameter_annotations"> </td>
854
+ </tr>
855
+ <tr>
856
+ <td class="parameter_name"><p>height</p></td>
857
+ <td class="parameter_description"><p>Height in pixels of region to update.</p></td>
858
+ <td class="parameter_annotations"> </td>
859
+ </tr>
860
+ <tr>
861
+ <td class="parameter_name"><p>rowstride</p></td>
862
+ <td class="parameter_description"><p>Distance in bytes between row starts on source buffer.</p></td>
863
+ <td class="parameter_annotations"> </td>
864
+ </tr>
865
+ <tr>
866
+ <td class="parameter_name"><p>bpp</p></td>
867
+ <td class="parameter_description"><p>bytes per pixel (Currently only 3 and 4 supported,
868
+ depending on <em class="parameter"><code>has_alpha</code></em>
869
+ )</p></td>
870
+ <td class="parameter_annotations"> </td>
871
+ </tr>
872
+ <tr>
873
+ <td class="parameter_name"><p>flags</p></td>
874
+ <td class="parameter_description"><p><a class="link" href="ClutterTexture.html#ClutterTextureFlags" title="enum ClutterTextureFlags"><span class="type">ClutterTextureFlags</span></a></p></td>
875
+ <td class="parameter_annotations"> </td>
876
+ </tr>
877
+ <tr>
878
+ <td class="parameter_name"><p>error</p></td>
879
+ <td class="parameter_description"><p>return location for a <span class="type">GError</span>, or <code class="literal">NULL</code></p></td>
880
+ <td class="parameter_annotations"> </td>
881
+ </tr>
882
+ </tbody>
883
+ </table></div>
884
+ </div>
885
+ <div class="refsect3">
886
+ <a name="id-1.10.20.10.9.8"></a><h4>Returns</h4>
887
+ <p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> on failure.</p>
888
+ <p></p>
889
+ </div>
890
+ <p class="since">Since 0.6</p>
891
+ </div>
892
+ <hr>
893
+ <div class="refsect2">
894
+ <a name="clutter-texture-get-base-size"></a><h3>clutter_texture_get_base_size ()</h3>
895
+ <pre class="programlisting"><span class="returnvalue">void</span>
896
+ clutter_texture_get_base_size (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
897
+ <em class="parameter"><code><span class="type">gint</span> *width</code></em>,
898
+ <em class="parameter"><code><span class="type">gint</span> *height</code></em>);</pre>
899
+ <div class="warning"><p><code class="literal">clutter_texture_get_base_size</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
900
+ <p>Gets the size in pixels of the untransformed underlying image</p>
901
+ <div class="refsect3">
902
+ <a name="id-1.10.20.10.10.6"></a><h4>Parameters</h4>
903
+ <div class="informaltable"><table width="100%" border="0">
904
+ <colgroup>
905
+ <col width="150px" class="parameters_name">
906
+ <col class="parameters_description">
907
+ <col width="200px" class="parameters_annotations">
908
+ </colgroup>
909
+ <tbody>
910
+ <tr>
911
+ <td class="parameter_name"><p>texture</p></td>
912
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
913
+ <td class="parameter_annotations"> </td>
914
+ </tr>
915
+ <tr>
916
+ <td class="parameter_name"><p>width</p></td>
917
+ <td class="parameter_description"><p> return location for the width, or <code class="literal">NULL</code>. </p></td>
918
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
919
+ </tr>
920
+ <tr>
921
+ <td class="parameter_name"><p>height</p></td>
922
+ <td class="parameter_description"><p> return location for the height, or <code class="literal">NULL</code>. </p></td>
923
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
924
+ </tr>
925
+ </tbody>
926
+ </table></div>
927
+ </div>
928
+ </div>
929
+ <hr>
930
+ <div class="refsect2">
931
+ <a name="clutter-texture-get-pixel-format"></a><h3>clutter_texture_get_pixel_format ()</h3>
932
+ <pre class="programlisting"><span class="returnvalue">CoglPixelFormat</span>
933
+ clutter_texture_get_pixel_format (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
934
+ <div class="warning"><p><code class="literal">clutter_texture_get_pixel_format</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
935
+ <p>Retrieves the pixel format used by <em class="parameter"><code>texture</code></em>
936
+ . This is
937
+ equivalent to:</p>
938
+ <div class="informalexample">
939
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
940
+ <tbody>
941
+ <tr>
942
+ <td class="listing_lines" align="right"><pre>1
943
+ 2
944
+ 3
945
+ 4</pre></td>
946
+ <td class="listing_code"><pre class="programlisting"><span class="normal">handle </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="ClutterTexture.html#clutter-texture-get-pixel-format">clutter_texture_get_pixel_format</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">texture</span><span class="symbol">);</span>
947
+
948
+ <span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">handle </span><span class="symbol">!=</span><span class="normal"> COGL_INVALID_HANDLE</span><span class="symbol">)</span>
949
+ <span class="normal"> format </span><span class="symbol">=</span><span class="normal"> </span><span class="function">cogl_texture_get_format</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">handle</span><span class="symbol">);</span></pre></td>
950
+ </tr>
951
+ </tbody>
952
+ </table>
953
+ </div>
954
+
955
+ <p></p>
956
+ <div class="refsect3">
957
+ <a name="id-1.10.20.10.11.9"></a><h4>Parameters</h4>
958
+ <div class="informaltable"><table width="100%" border="0">
959
+ <colgroup>
960
+ <col width="150px" class="parameters_name">
961
+ <col class="parameters_description">
962
+ <col width="200px" class="parameters_annotations">
963
+ </colgroup>
964
+ <tbody><tr>
965
+ <td class="parameter_name"><p>texture</p></td>
966
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
967
+ <td class="parameter_annotations"> </td>
968
+ </tr></tbody>
969
+ </table></div>
970
+ </div>
971
+ <div class="refsect3">
972
+ <a name="id-1.10.20.10.11.10"></a><h4>Returns</h4>
973
+ <p> a <span class="type">CoglPixelFormat</span> value</p>
974
+ <p></p>
975
+ </div>
976
+ <p class="since">Since 1.0</p>
977
+ </div>
978
+ <hr>
979
+ <div class="refsect2">
980
+ <a name="clutter-texture-get-max-tile-waste"></a><h3>clutter_texture_get_max_tile_waste ()</h3>
981
+ <pre class="programlisting"><span class="returnvalue">gint</span>
982
+ clutter_texture_get_max_tile_waste (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
983
+ <div class="warning"><p><code class="literal">clutter_texture_get_max_tile_waste</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
984
+ <p>Gets the maximum waste that will be used when creating a texture or
985
+ -1 if slicing is disabled.</p>
986
+ <div class="refsect3">
987
+ <a name="id-1.10.20.10.12.7"></a><h4>Parameters</h4>
988
+ <div class="informaltable"><table width="100%" border="0">
989
+ <colgroup>
990
+ <col width="150px" class="parameters_name">
991
+ <col class="parameters_description">
992
+ <col width="200px" class="parameters_annotations">
993
+ </colgroup>
994
+ <tbody><tr>
995
+ <td class="parameter_name"><p>texture</p></td>
996
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
997
+ <td class="parameter_annotations"> </td>
998
+ </tr></tbody>
999
+ </table></div>
1000
+ </div>
1001
+ <div class="refsect3">
1002
+ <a name="id-1.10.20.10.12.8"></a><h4>Returns</h4>
1003
+ <p> The maximum waste or -1 if the texture waste is
1004
+ unlimited.</p>
1005
+ <p></p>
1006
+ </div>
1007
+ <p class="since">Since 0.8</p>
1008
+ </div>
1009
+ <hr>
1010
+ <div class="refsect2">
1011
+ <a name="clutter-texture-get-filter-quality"></a><h3>clutter_texture_get_filter_quality ()</h3>
1012
+ <pre class="programlisting"><a class="link" href="ClutterTexture.html#ClutterTextureQuality" title="enum ClutterTextureQuality"><span class="returnvalue">ClutterTextureQuality</span></a>
1013
+ clutter_texture_get_filter_quality (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1014
+ <div class="warning"><p><code class="literal">clutter_texture_get_filter_quality</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1015
+ <p>Gets the filter quality used when scaling a texture.</p>
1016
+ <div class="refsect3">
1017
+ <a name="id-1.10.20.10.13.7"></a><h4>Parameters</h4>
1018
+ <div class="informaltable"><table width="100%" border="0">
1019
+ <colgroup>
1020
+ <col width="150px" class="parameters_name">
1021
+ <col class="parameters_description">
1022
+ <col width="200px" class="parameters_annotations">
1023
+ </colgroup>
1024
+ <tbody><tr>
1025
+ <td class="parameter_name"><p>texture</p></td>
1026
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1027
+ <td class="parameter_annotations"> </td>
1028
+ </tr></tbody>
1029
+ </table></div>
1030
+ </div>
1031
+ <div class="refsect3">
1032
+ <a name="id-1.10.20.10.13.8"></a><h4>Returns</h4>
1033
+ <p> The filter quality value.</p>
1034
+ <p></p>
1035
+ </div>
1036
+ <p class="since">Since 0.8</p>
1037
+ </div>
1038
+ <hr>
1039
+ <div class="refsect2">
1040
+ <a name="clutter-texture-set-filter-quality"></a><h3>clutter_texture_set_filter_quality ()</h3>
1041
+ <pre class="programlisting"><span class="returnvalue">void</span>
1042
+ clutter_texture_set_filter_quality (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1043
+ <em class="parameter"><code><a class="link" href="ClutterTexture.html#ClutterTextureQuality" title="enum ClutterTextureQuality"><span class="type">ClutterTextureQuality</span></a> filter_quality</code></em>);</pre>
1044
+ <div class="warning"><p><code class="literal">clutter_texture_set_filter_quality</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1045
+ <p>Sets the filter quality when scaling a texture. The quality is an
1046
+ enumeration currently the following values are supported:
1047
+ <a class="link" href="ClutterTexture.html#CLUTTER-TEXTURE-QUALITY-LOW:CAPS"><code class="literal">CLUTTER_TEXTURE_QUALITY_LOW</code></a> which is fast but only uses nearest neighbour
1048
+ interpolation. <a class="link" href="ClutterTexture.html#CLUTTER-TEXTURE-QUALITY-MEDIUM:CAPS"><code class="literal">CLUTTER_TEXTURE_QUALITY_MEDIUM</code></a> which is computationally a
1049
+ bit more expensive (bilinear interpolation), and
1050
+ <a class="link" href="ClutterTexture.html#CLUTTER-TEXTURE-QUALITY-HIGH:CAPS"><code class="literal">CLUTTER_TEXTURE_QUALITY_HIGH</code></a> which uses extra texture memory resources to
1051
+ improve scaled down rendering as well (by using mipmaps). The default value
1052
+ is <a class="link" href="ClutterTexture.html#CLUTTER-TEXTURE-QUALITY-MEDIUM:CAPS"><code class="literal">CLUTTER_TEXTURE_QUALITY_MEDIUM</code></a>.</p>
1053
+ <div class="refsect3">
1054
+ <a name="id-1.10.20.10.14.7"></a><h4>Parameters</h4>
1055
+ <div class="informaltable"><table width="100%" border="0">
1056
+ <colgroup>
1057
+ <col width="150px" class="parameters_name">
1058
+ <col class="parameters_description">
1059
+ <col width="200px" class="parameters_annotations">
1060
+ </colgroup>
1061
+ <tbody>
1062
+ <tr>
1063
+ <td class="parameter_name"><p>texture</p></td>
1064
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1065
+ <td class="parameter_annotations"> </td>
1066
+ </tr>
1067
+ <tr>
1068
+ <td class="parameter_name"><p>filter_quality</p></td>
1069
+ <td class="parameter_description"><p>new filter quality value</p></td>
1070
+ <td class="parameter_annotations"> </td>
1071
+ </tr>
1072
+ </tbody>
1073
+ </table></div>
1074
+ </div>
1075
+ <p class="since">Since 0.8</p>
1076
+ </div>
1077
+ <hr>
1078
+ <div class="refsect2">
1079
+ <a name="clutter-texture-get-cogl-texture"></a><h3>clutter_texture_get_cogl_texture ()</h3>
1080
+ <pre class="programlisting"><span class="returnvalue">CoglHandle</span>
1081
+ clutter_texture_get_cogl_texture (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1082
+ <div class="warning"><p><code class="literal">clutter_texture_get_cogl_texture</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1083
+ <p>Retrieves the handle to the underlying COGL texture used for drawing
1084
+ the actor. No extra reference is taken so if you need to keep the
1085
+ handle then you should call <code class="function">cogl_handle_ref()</code> on it.</p>
1086
+ <p>The texture handle returned is the first layer of the material
1087
+ handle used by the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a>. If you need to access the other
1088
+ layers you should use <a class="link" href="ClutterTexture.html#clutter-texture-get-cogl-material" title="clutter_texture_get_cogl_material ()"><code class="function">clutter_texture_get_cogl_material()</code></a> instead
1089
+ and use the <span class="type">CoglMaterial</span> API.</p>
1090
+ <div class="refsect3">
1091
+ <a name="id-1.10.20.10.15.8"></a><h4>Parameters</h4>
1092
+ <div class="informaltable"><table width="100%" border="0">
1093
+ <colgroup>
1094
+ <col width="150px" class="parameters_name">
1095
+ <col class="parameters_description">
1096
+ <col width="200px" class="parameters_annotations">
1097
+ </colgroup>
1098
+ <tbody><tr>
1099
+ <td class="parameter_name"><p>texture</p></td>
1100
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1101
+ <td class="parameter_annotations"> </td>
1102
+ </tr></tbody>
1103
+ </table></div>
1104
+ </div>
1105
+ <div class="refsect3">
1106
+ <a name="id-1.10.20.10.15.9"></a><h4>Returns</h4>
1107
+ <p> a <span class="type">CoglHandle</span> for the texture. The returned
1108
+ handle is owned by the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> and it should not be unreferenced. </p>
1109
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1110
+ </div>
1111
+ <p class="since">Since 0.8</p>
1112
+ </div>
1113
+ <hr>
1114
+ <div class="refsect2">
1115
+ <a name="clutter-texture-set-cogl-texture"></a><h3>clutter_texture_set_cogl_texture ()</h3>
1116
+ <pre class="programlisting"><span class="returnvalue">void</span>
1117
+ clutter_texture_set_cogl_texture (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1118
+ <em class="parameter"><code><span class="type">CoglHandle</span> cogl_tex</code></em>);</pre>
1119
+ <div class="warning"><p><code class="literal">clutter_texture_set_cogl_texture</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1120
+ <p>Replaces the underlying COGL texture drawn by this actor with
1121
+ <em class="parameter"><code>cogl_tex</code></em>
1122
+ . A reference to the texture is taken so if the handle is
1123
+ no longer needed it should be deref'd with cogl_handle_unref.</p>
1124
+ <div class="refsect3">
1125
+ <a name="id-1.10.20.10.16.7"></a><h4>Parameters</h4>
1126
+ <div class="informaltable"><table width="100%" border="0">
1127
+ <colgroup>
1128
+ <col width="150px" class="parameters_name">
1129
+ <col class="parameters_description">
1130
+ <col width="200px" class="parameters_annotations">
1131
+ </colgroup>
1132
+ <tbody>
1133
+ <tr>
1134
+ <td class="parameter_name"><p>texture</p></td>
1135
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1136
+ <td class="parameter_annotations"> </td>
1137
+ </tr>
1138
+ <tr>
1139
+ <td class="parameter_name"><p>cogl_tex</p></td>
1140
+ <td class="parameter_description"><p>A CoglHandle for a texture</p></td>
1141
+ <td class="parameter_annotations"> </td>
1142
+ </tr>
1143
+ </tbody>
1144
+ </table></div>
1145
+ </div>
1146
+ <p class="since">Since 0.8</p>
1147
+ </div>
1148
+ <hr>
1149
+ <div class="refsect2">
1150
+ <a name="clutter-texture-get-cogl-material"></a><h3>clutter_texture_get_cogl_material ()</h3>
1151
+ <pre class="programlisting"><span class="returnvalue">CoglHandle</span>
1152
+ clutter_texture_get_cogl_material (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1153
+ <div class="warning"><p><code class="literal">clutter_texture_get_cogl_material</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1154
+ <p>Returns a handle to the underlying COGL material used for drawing
1155
+ the actor.</p>
1156
+ <div class="refsect3">
1157
+ <a name="id-1.10.20.10.17.7"></a><h4>Parameters</h4>
1158
+ <div class="informaltable"><table width="100%" border="0">
1159
+ <colgroup>
1160
+ <col width="150px" class="parameters_name">
1161
+ <col class="parameters_description">
1162
+ <col width="200px" class="parameters_annotations">
1163
+ </colgroup>
1164
+ <tbody><tr>
1165
+ <td class="parameter_name"><p>texture</p></td>
1166
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1167
+ <td class="parameter_annotations"> </td>
1168
+ </tr></tbody>
1169
+ </table></div>
1170
+ </div>
1171
+ <div class="refsect3">
1172
+ <a name="id-1.10.20.10.17.8"></a><h4>Returns</h4>
1173
+ <p> a handle for a <span class="type">CoglMaterial</span>. The
1174
+ material is owned by the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> and it should not be
1175
+ unreferenced. </p>
1176
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1177
+ </div>
1178
+ <p class="since">Since 1.0</p>
1179
+ </div>
1180
+ <hr>
1181
+ <div class="refsect2">
1182
+ <a name="clutter-texture-set-cogl-material"></a><h3>clutter_texture_set_cogl_material ()</h3>
1183
+ <pre class="programlisting"><span class="returnvalue">void</span>
1184
+ clutter_texture_set_cogl_material (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1185
+ <em class="parameter"><code><span class="type">CoglHandle</span> cogl_material</code></em>);</pre>
1186
+ <div class="warning"><p><code class="literal">clutter_texture_set_cogl_material</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1187
+ <p>Replaces the underlying Cogl material drawn by this actor with
1188
+ <em class="parameter"><code>cogl_material</code></em>
1189
+ . A reference to the material is taken so if the
1190
+ handle is no longer needed it should be deref'd with
1191
+ cogl_handle_unref. Texture data is attached to the material so
1192
+ calling this function also replaces the Cogl
1193
+ texture. <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> requires that the material have a texture
1194
+ layer so you should set one on the material before calling this
1195
+ function.</p>
1196
+ <div class="refsect3">
1197
+ <a name="id-1.10.20.10.18.7"></a><h4>Parameters</h4>
1198
+ <div class="informaltable"><table width="100%" border="0">
1199
+ <colgroup>
1200
+ <col width="150px" class="parameters_name">
1201
+ <col class="parameters_description">
1202
+ <col width="200px" class="parameters_annotations">
1203
+ </colgroup>
1204
+ <tbody>
1205
+ <tr>
1206
+ <td class="parameter_name"><p>texture</p></td>
1207
+ <td class="parameter_description"><p>A <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1208
+ <td class="parameter_annotations"> </td>
1209
+ </tr>
1210
+ <tr>
1211
+ <td class="parameter_name"><p>cogl_material</p></td>
1212
+ <td class="parameter_description"><p>A CoglHandle for a material</p></td>
1213
+ <td class="parameter_annotations"> </td>
1214
+ </tr>
1215
+ </tbody>
1216
+ </table></div>
1217
+ </div>
1218
+ <p class="since">Since 0.8</p>
1219
+ </div>
1220
+ <hr>
1221
+ <div class="refsect2">
1222
+ <a name="clutter-texture-get-sync-size"></a><h3>clutter_texture_get_sync_size ()</h3>
1223
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1224
+ clutter_texture_get_sync_size (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1225
+ <div class="warning"><p><code class="literal">clutter_texture_get_sync_size</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1226
+ <p>Retrieves the value set with <a class="link" href="ClutterTexture.html#clutter-texture-set-sync-size" title="clutter_texture_set_sync_size ()"><code class="function">clutter_texture_set_sync_size()</code></a></p>
1227
+ <div class="refsect3">
1228
+ <a name="id-1.10.20.10.19.7"></a><h4>Parameters</h4>
1229
+ <div class="informaltable"><table width="100%" border="0">
1230
+ <colgroup>
1231
+ <col width="150px" class="parameters_name">
1232
+ <col class="parameters_description">
1233
+ <col width="200px" class="parameters_annotations">
1234
+ </colgroup>
1235
+ <tbody><tr>
1236
+ <td class="parameter_name"><p>texture</p></td>
1237
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1238
+ <td class="parameter_annotations"> </td>
1239
+ </tr></tbody>
1240
+ </table></div>
1241
+ </div>
1242
+ <div class="refsect3">
1243
+ <a name="id-1.10.20.10.19.8"></a><h4>Returns</h4>
1244
+ <p> <code class="literal">TRUE</code> if the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> should have the same
1245
+ preferred size of the underlying image data</p>
1246
+ <p></p>
1247
+ </div>
1248
+ <p class="since">Since 1.0</p>
1249
+ </div>
1250
+ <hr>
1251
+ <div class="refsect2">
1252
+ <a name="clutter-texture-set-sync-size"></a><h3>clutter_texture_set_sync_size ()</h3>
1253
+ <pre class="programlisting"><span class="returnvalue">void</span>
1254
+ clutter_texture_set_sync_size (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1255
+ <em class="parameter"><code><span class="type">gboolean</span> sync_size</code></em>);</pre>
1256
+ <div class="warning"><p><code class="literal">clutter_texture_set_sync_size</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1257
+ <p>Sets whether <em class="parameter"><code>texture</code></em>
1258
+ should have the same preferred size as the
1259
+ underlying image data.</p>
1260
+ <div class="refsect3">
1261
+ <a name="id-1.10.20.10.20.7"></a><h4>Parameters</h4>
1262
+ <div class="informaltable"><table width="100%" border="0">
1263
+ <colgroup>
1264
+ <col width="150px" class="parameters_name">
1265
+ <col class="parameters_description">
1266
+ <col width="200px" class="parameters_annotations">
1267
+ </colgroup>
1268
+ <tbody>
1269
+ <tr>
1270
+ <td class="parameter_name"><p>texture</p></td>
1271
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1272
+ <td class="parameter_annotations"> </td>
1273
+ </tr>
1274
+ <tr>
1275
+ <td class="parameter_name"><p>sync_size</p></td>
1276
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the texture should have the same size of the
1277
+ underlying image data</p></td>
1278
+ <td class="parameter_annotations"> </td>
1279
+ </tr>
1280
+ </tbody>
1281
+ </table></div>
1282
+ </div>
1283
+ <p class="since">Since 1.0</p>
1284
+ </div>
1285
+ <hr>
1286
+ <div class="refsect2">
1287
+ <a name="clutter-texture-get-repeat"></a><h3>clutter_texture_get_repeat ()</h3>
1288
+ <pre class="programlisting"><span class="returnvalue">void</span>
1289
+ clutter_texture_get_repeat (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1290
+ <em class="parameter"><code><span class="type">gboolean</span> *repeat_x</code></em>,
1291
+ <em class="parameter"><code><span class="type">gboolean</span> *repeat_y</code></em>);</pre>
1292
+ <div class="warning"><p><code class="literal">clutter_texture_get_repeat</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1293
+ <p>Retrieves the horizontal and vertical repeat values set
1294
+ using <a class="link" href="ClutterTexture.html#clutter-texture-set-repeat" title="clutter_texture_set_repeat ()"><code class="function">clutter_texture_set_repeat()</code></a></p>
1295
+ <div class="refsect3">
1296
+ <a name="id-1.10.20.10.21.7"></a><h4>Parameters</h4>
1297
+ <div class="informaltable"><table width="100%" border="0">
1298
+ <colgroup>
1299
+ <col width="150px" class="parameters_name">
1300
+ <col class="parameters_description">
1301
+ <col width="200px" class="parameters_annotations">
1302
+ </colgroup>
1303
+ <tbody>
1304
+ <tr>
1305
+ <td class="parameter_name"><p>texture</p></td>
1306
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1307
+ <td class="parameter_annotations"> </td>
1308
+ </tr>
1309
+ <tr>
1310
+ <td class="parameter_name"><p>repeat_x</p></td>
1311
+ <td class="parameter_description"><p> return location for the horizontal repeat. </p></td>
1312
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1313
+ </tr>
1314
+ <tr>
1315
+ <td class="parameter_name"><p>repeat_y</p></td>
1316
+ <td class="parameter_description"><p> return location for the vertical repeat. </p></td>
1317
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1318
+ </tr>
1319
+ </tbody>
1320
+ </table></div>
1321
+ </div>
1322
+ <p class="since">Since 1.0</p>
1323
+ </div>
1324
+ <hr>
1325
+ <div class="refsect2">
1326
+ <a name="clutter-texture-set-repeat"></a><h3>clutter_texture_set_repeat ()</h3>
1327
+ <pre class="programlisting"><span class="returnvalue">void</span>
1328
+ clutter_texture_set_repeat (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1329
+ <em class="parameter"><code><span class="type">gboolean</span> repeat_x</code></em>,
1330
+ <em class="parameter"><code><span class="type">gboolean</span> repeat_y</code></em>);</pre>
1331
+ <div class="warning"><p><code class="literal">clutter_texture_set_repeat</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1332
+ <p>Sets whether the <em class="parameter"><code>texture</code></em>
1333
+ should repeat horizontally or
1334
+ vertically when the actor size is bigger than the image size</p>
1335
+ <div class="refsect3">
1336
+ <a name="id-1.10.20.10.22.7"></a><h4>Parameters</h4>
1337
+ <div class="informaltable"><table width="100%" border="0">
1338
+ <colgroup>
1339
+ <col width="150px" class="parameters_name">
1340
+ <col class="parameters_description">
1341
+ <col width="200px" class="parameters_annotations">
1342
+ </colgroup>
1343
+ <tbody>
1344
+ <tr>
1345
+ <td class="parameter_name"><p>texture</p></td>
1346
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1347
+ <td class="parameter_annotations"> </td>
1348
+ </tr>
1349
+ <tr>
1350
+ <td class="parameter_name"><p>repeat_x</p></td>
1351
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the texture should repeat horizontally</p></td>
1352
+ <td class="parameter_annotations"> </td>
1353
+ </tr>
1354
+ <tr>
1355
+ <td class="parameter_name"><p>repeat_y</p></td>
1356
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the texture should repeat vertically</p></td>
1357
+ <td class="parameter_annotations"> </td>
1358
+ </tr>
1359
+ </tbody>
1360
+ </table></div>
1361
+ </div>
1362
+ <p class="since">Since 1.0</p>
1363
+ </div>
1364
+ <hr>
1365
+ <div class="refsect2">
1366
+ <a name="clutter-texture-get-keep-aspect-ratio"></a><h3>clutter_texture_get_keep_aspect_ratio ()</h3>
1367
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1368
+ clutter_texture_get_keep_aspect_ratio (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1369
+ <div class="warning"><p><code class="literal">clutter_texture_get_keep_aspect_ratio</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1370
+ <p>Retrieves the value set using <a class="link" href="ClutterTexture.html#clutter-texture-set-keep-aspect-ratio" title="clutter_texture_set_keep_aspect_ratio ()"><code class="function">clutter_texture_set_keep_aspect_ratio()</code></a></p>
1371
+ <div class="refsect3">
1372
+ <a name="id-1.10.20.10.23.7"></a><h4>Parameters</h4>
1373
+ <div class="informaltable"><table width="100%" border="0">
1374
+ <colgroup>
1375
+ <col width="150px" class="parameters_name">
1376
+ <col class="parameters_description">
1377
+ <col width="200px" class="parameters_annotations">
1378
+ </colgroup>
1379
+ <tbody><tr>
1380
+ <td class="parameter_name"><p>texture</p></td>
1381
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1382
+ <td class="parameter_annotations"> </td>
1383
+ </tr></tbody>
1384
+ </table></div>
1385
+ </div>
1386
+ <div class="refsect3">
1387
+ <a name="id-1.10.20.10.23.8"></a><h4>Returns</h4>
1388
+ <p> <code class="literal">TRUE</code> if the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> should maintain the
1389
+ aspect ratio of the underlying image</p>
1390
+ <p></p>
1391
+ </div>
1392
+ <p class="since">Since 1.0</p>
1393
+ </div>
1394
+ <hr>
1395
+ <div class="refsect2">
1396
+ <a name="clutter-texture-set-keep-aspect-ratio"></a><h3>clutter_texture_set_keep_aspect_ratio ()</h3>
1397
+ <pre class="programlisting"><span class="returnvalue">void</span>
1398
+ clutter_texture_set_keep_aspect_ratio (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1399
+ <em class="parameter"><code><span class="type">gboolean</span> keep_aspect</code></em>);</pre>
1400
+ <div class="warning"><p><code class="literal">clutter_texture_set_keep_aspect_ratio</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1401
+ <p>Sets whether <em class="parameter"><code>texture</code></em>
1402
+ should have a preferred size maintaining
1403
+ the aspect ratio of the underlying image</p>
1404
+ <div class="refsect3">
1405
+ <a name="id-1.10.20.10.24.7"></a><h4>Parameters</h4>
1406
+ <div class="informaltable"><table width="100%" border="0">
1407
+ <colgroup>
1408
+ <col width="150px" class="parameters_name">
1409
+ <col class="parameters_description">
1410
+ <col width="200px" class="parameters_annotations">
1411
+ </colgroup>
1412
+ <tbody>
1413
+ <tr>
1414
+ <td class="parameter_name"><p>texture</p></td>
1415
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1416
+ <td class="parameter_annotations"> </td>
1417
+ </tr>
1418
+ <tr>
1419
+ <td class="parameter_name"><p>keep_aspect</p></td>
1420
+ <td class="parameter_description"><p><code class="literal">TRUE</code> to maintain aspect ratio</p></td>
1421
+ <td class="parameter_annotations"> </td>
1422
+ </tr>
1423
+ </tbody>
1424
+ </table></div>
1425
+ </div>
1426
+ <p class="since">Since 1.0</p>
1427
+ </div>
1428
+ <hr>
1429
+ <div class="refsect2">
1430
+ <a name="clutter-texture-get-load-async"></a><h3>clutter_texture_get_load_async ()</h3>
1431
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1432
+ clutter_texture_get_load_async (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1433
+ <div class="warning"><p><code class="literal">clutter_texture_get_load_async</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1434
+ <p>Retrieves the value set using <a class="link" href="ClutterTexture.html#clutter-texture-set-load-async" title="clutter_texture_set_load_async ()"><code class="function">clutter_texture_set_load_async()</code></a></p>
1435
+ <div class="refsect3">
1436
+ <a name="id-1.10.20.10.25.7"></a><h4>Parameters</h4>
1437
+ <div class="informaltable"><table width="100%" border="0">
1438
+ <colgroup>
1439
+ <col width="150px" class="parameters_name">
1440
+ <col class="parameters_description">
1441
+ <col width="200px" class="parameters_annotations">
1442
+ </colgroup>
1443
+ <tbody><tr>
1444
+ <td class="parameter_name"><p>texture</p></td>
1445
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1446
+ <td class="parameter_annotations"> </td>
1447
+ </tr></tbody>
1448
+ </table></div>
1449
+ </div>
1450
+ <div class="refsect3">
1451
+ <a name="id-1.10.20.10.25.8"></a><h4>Returns</h4>
1452
+ <p> <code class="literal">TRUE</code> if the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> should load the data from
1453
+ disk asynchronously</p>
1454
+ <p></p>
1455
+ </div>
1456
+ <p class="since">Since 1.0</p>
1457
+ </div>
1458
+ <hr>
1459
+ <div class="refsect2">
1460
+ <a name="clutter-texture-set-load-async"></a><h3>clutter_texture_set_load_async ()</h3>
1461
+ <pre class="programlisting"><span class="returnvalue">void</span>
1462
+ clutter_texture_set_load_async (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1463
+ <em class="parameter"><code><span class="type">gboolean</span> load_async</code></em>);</pre>
1464
+ <div class="warning"><p><code class="literal">clutter_texture_set_load_async</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1465
+ <p>Sets whether <em class="parameter"><code>texture</code></em>
1466
+ should use a worker thread to load the data
1467
+ from disk asynchronously. Setting <em class="parameter"><code>load_async</code></em>
1468
+ to <code class="literal">TRUE</code> will make
1469
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-file" title="clutter_texture_set_from_file ()"><code class="function">clutter_texture_set_from_file()</code></a> return immediately.</p>
1470
+ <p>See the <a class="link" href="ClutterTexture.html#ClutterTexture--load-async" title="The “load-async” property"><span class="type">“load-async”</span></a> property documentation, and
1471
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-load-data-async" title="clutter_texture_set_load_data_async ()"><code class="function">clutter_texture_set_load_data_async()</code></a>.</p>
1472
+ <div class="refsect3">
1473
+ <a name="id-1.10.20.10.26.8"></a><h4>Parameters</h4>
1474
+ <div class="informaltable"><table width="100%" border="0">
1475
+ <colgroup>
1476
+ <col width="150px" class="parameters_name">
1477
+ <col class="parameters_description">
1478
+ <col width="200px" class="parameters_annotations">
1479
+ </colgroup>
1480
+ <tbody>
1481
+ <tr>
1482
+ <td class="parameter_name"><p>texture</p></td>
1483
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1484
+ <td class="parameter_annotations"> </td>
1485
+ </tr>
1486
+ <tr>
1487
+ <td class="parameter_name"><p>load_async</p></td>
1488
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the texture should asynchronously load data
1489
+ from a filename</p></td>
1490
+ <td class="parameter_annotations"> </td>
1491
+ </tr>
1492
+ </tbody>
1493
+ </table></div>
1494
+ </div>
1495
+ <p class="since">Since 1.0</p>
1496
+ </div>
1497
+ <hr>
1498
+ <div class="refsect2">
1499
+ <a name="clutter-texture-get-load-data-async"></a><h3>clutter_texture_get_load_data_async ()</h3>
1500
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1501
+ clutter_texture_get_load_data_async (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1502
+ <div class="warning"><p><code class="literal">clutter_texture_get_load_data_async</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1503
+ <p>Retrieves the value set by <a class="link" href="ClutterTexture.html#clutter-texture-set-load-data-async" title="clutter_texture_set_load_data_async ()"><code class="function">clutter_texture_set_load_data_async()</code></a></p>
1504
+ <div class="refsect3">
1505
+ <a name="id-1.10.20.10.27.7"></a><h4>Parameters</h4>
1506
+ <div class="informaltable"><table width="100%" border="0">
1507
+ <colgroup>
1508
+ <col width="150px" class="parameters_name">
1509
+ <col class="parameters_description">
1510
+ <col width="200px" class="parameters_annotations">
1511
+ </colgroup>
1512
+ <tbody><tr>
1513
+ <td class="parameter_name"><p>texture</p></td>
1514
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1515
+ <td class="parameter_annotations"> </td>
1516
+ </tr></tbody>
1517
+ </table></div>
1518
+ </div>
1519
+ <div class="refsect3">
1520
+ <a name="id-1.10.20.10.27.8"></a><h4>Returns</h4>
1521
+ <p> <code class="literal">TRUE</code> if the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> should load the image
1522
+ data from a file asynchronously</p>
1523
+ <p></p>
1524
+ </div>
1525
+ <p class="since">Since 1.0</p>
1526
+ </div>
1527
+ <hr>
1528
+ <div class="refsect2">
1529
+ <a name="clutter-texture-set-load-data-async"></a><h3>clutter_texture_set_load_data_async ()</h3>
1530
+ <pre class="programlisting"><span class="returnvalue">void</span>
1531
+ clutter_texture_set_load_data_async (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1532
+ <em class="parameter"><code><span class="type">gboolean</span> load_async</code></em>);</pre>
1533
+ <div class="warning"><p><code class="literal">clutter_texture_set_load_data_async</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1534
+ <p>Sets whether <em class="parameter"><code>texture</code></em>
1535
+ should use a worker thread to load the data
1536
+ from disk asynchronously. Setting <em class="parameter"><code>load_async</code></em>
1537
+ to <code class="literal">TRUE</code> will make
1538
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-file" title="clutter_texture_set_from_file ()"><code class="function">clutter_texture_set_from_file()</code></a> block until the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> has
1539
+ determined the width and height of the image data.</p>
1540
+ <p>See the <a class="link" href="ClutterTexture.html#ClutterTexture--load-async" title="The “load-async” property"><span class="type">“load-async”</span></a> property documentation, and
1541
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-load-async" title="clutter_texture_set_load_async ()"><code class="function">clutter_texture_set_load_async()</code></a>.</p>
1542
+ <div class="refsect3">
1543
+ <a name="id-1.10.20.10.28.8"></a><h4>Parameters</h4>
1544
+ <div class="informaltable"><table width="100%" border="0">
1545
+ <colgroup>
1546
+ <col width="150px" class="parameters_name">
1547
+ <col class="parameters_description">
1548
+ <col width="200px" class="parameters_annotations">
1549
+ </colgroup>
1550
+ <tbody>
1551
+ <tr>
1552
+ <td class="parameter_name"><p>texture</p></td>
1553
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1554
+ <td class="parameter_annotations"> </td>
1555
+ </tr>
1556
+ <tr>
1557
+ <td class="parameter_name"><p>load_async</p></td>
1558
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the texture should asynchronously load data
1559
+ from a filename</p></td>
1560
+ <td class="parameter_annotations"> </td>
1561
+ </tr>
1562
+ </tbody>
1563
+ </table></div>
1564
+ </div>
1565
+ <p class="since">Since 1.0</p>
1566
+ </div>
1567
+ <hr>
1568
+ <div class="refsect2">
1569
+ <a name="clutter-texture-get-pick-with-alpha"></a><h3>clutter_texture_get_pick_with_alpha ()</h3>
1570
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1571
+ clutter_texture_get_pick_with_alpha (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>);</pre>
1572
+ <div class="warning"><p><code class="literal">clutter_texture_get_pick_with_alpha</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1573
+ <p>Retrieves the value set by <a class="link" href="ClutterTexture.html#clutter-texture-set-load-data-async" title="clutter_texture_set_load_data_async ()"><code class="function">clutter_texture_set_load_data_async()</code></a></p>
1574
+ <div class="refsect3">
1575
+ <a name="id-1.10.20.10.29.7"></a><h4>Parameters</h4>
1576
+ <div class="informaltable"><table width="100%" border="0">
1577
+ <colgroup>
1578
+ <col width="150px" class="parameters_name">
1579
+ <col class="parameters_description">
1580
+ <col width="200px" class="parameters_annotations">
1581
+ </colgroup>
1582
+ <tbody><tr>
1583
+ <td class="parameter_name"><p>texture</p></td>
1584
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1585
+ <td class="parameter_annotations"> </td>
1586
+ </tr></tbody>
1587
+ </table></div>
1588
+ </div>
1589
+ <div class="refsect3">
1590
+ <a name="id-1.10.20.10.29.8"></a><h4>Returns</h4>
1591
+ <p> <code class="literal">TRUE</code> if the <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> should define its shape
1592
+ using the alpha channel when picking.</p>
1593
+ <p></p>
1594
+ </div>
1595
+ <p class="since">Since 1.4</p>
1596
+ </div>
1597
+ <hr>
1598
+ <div class="refsect2">
1599
+ <a name="clutter-texture-set-pick-with-alpha"></a><h3>clutter_texture_set_pick_with_alpha ()</h3>
1600
+ <pre class="programlisting"><span class="returnvalue">void</span>
1601
+ clutter_texture_set_pick_with_alpha (<em class="parameter"><code><a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture</code></em>,
1602
+ <em class="parameter"><code><span class="type">gboolean</span> pick_with_alpha</code></em>);</pre>
1603
+ <div class="warning"><p><code class="literal">clutter_texture_set_pick_with_alpha</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1604
+ <p>Sets whether <em class="parameter"><code>texture</code></em>
1605
+ should have it's shape defined by the alpha
1606
+ channel when picking.</p>
1607
+ <p>Be aware that this is a bit more costly than the default picking
1608
+ due to the texture lookup, extra test against the alpha value and
1609
+ the fact that it will also interrupt the batching of geometry done
1610
+ internally.</p>
1611
+ <p>Also there is currently no control over the threshold used to
1612
+ determine what value of alpha is considered pickable, and so only
1613
+ fully opaque parts of the texture will react to picking.</p>
1614
+ <div class="refsect3">
1615
+ <a name="id-1.10.20.10.30.9"></a><h4>Parameters</h4>
1616
+ <div class="informaltable"><table width="100%" border="0">
1617
+ <colgroup>
1618
+ <col width="150px" class="parameters_name">
1619
+ <col class="parameters_description">
1620
+ <col width="200px" class="parameters_annotations">
1621
+ </colgroup>
1622
+ <tbody>
1623
+ <tr>
1624
+ <td class="parameter_name"><p>texture</p></td>
1625
+ <td class="parameter_description"><p>a <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p></td>
1626
+ <td class="parameter_annotations"> </td>
1627
+ </tr>
1628
+ <tr>
1629
+ <td class="parameter_name"><p>pick_with_alpha</p></td>
1630
+ <td class="parameter_description"><p><code class="literal">TRUE</code> if the alpha channel should affect the
1631
+ picking shape</p></td>
1632
+ <td class="parameter_annotations"> </td>
1633
+ </tr>
1634
+ </tbody>
1635
+ </table></div>
1636
+ </div>
1637
+ <p class="since">Since 1.4</p>
1638
+ </div>
1639
+ </div>
1640
+ <div class="refsect1">
1641
+ <a name="ClutterTexture.other_details"></a><h2>Types and Values</h2>
1642
+ <div class="refsect2">
1643
+ <a name="ClutterTexture-struct"></a><h3>struct ClutterTexture</h3>
1644
+ <pre class="programlisting">struct ClutterTexture;</pre>
1645
+ <p>The <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> structure contains only private data
1646
+ and should be accessed using the provided API</p>
1647
+ <p class="since">Since 0.1</p>
1648
+ </div>
1649
+ <hr>
1650
+ <div class="refsect2">
1651
+ <a name="ClutterTextureClass"></a><h3>struct ClutterTextureClass</h3>
1652
+ <pre class="programlisting">struct ClutterTextureClass {
1653
+ void (* size_change) (ClutterTexture *texture,
1654
+ gint width,
1655
+ gint height);
1656
+ void (* pixbuf_change) (ClutterTexture *texture);
1657
+ void (* load_finished) (ClutterTexture *texture,
1658
+ const GError *error);
1659
+ };
1660
+ </pre>
1661
+ <p>The <a class="link" href="ClutterTexture.html#ClutterTextureClass" title="struct ClutterTextureClass"><span class="type">ClutterTextureClass</span></a> structure contains only private data</p>
1662
+ <div class="refsect3">
1663
+ <a name="id-1.10.20.11.3.5"></a><h4>Members</h4>
1664
+ <div class="informaltable"><table width="100%" border="0">
1665
+ <colgroup>
1666
+ <col width="300px" class="struct_members_name">
1667
+ <col class="struct_members_description">
1668
+ <col width="200px" class="struct_members_annotations">
1669
+ </colgroup>
1670
+ <tbody>
1671
+ <tr>
1672
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTextureClass.size-change"></a>size_change</code></em> ()</p></td>
1673
+ <td class="struct_member_description"><p>handler for the <a class="link" href="ClutterTexture.html#ClutterTexture-size-change" title="The “size-change” signal"><span class="type">“size-change”</span></a> signal</p></td>
1674
+ <td class="struct_member_annotations"> </td>
1675
+ </tr>
1676
+ <tr>
1677
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTextureClass.pixbuf-change"></a>pixbuf_change</code></em> ()</p></td>
1678
+ <td class="struct_member_description"><p>handler for the <a class="link" href="ClutterTexture.html#ClutterTexture-pixbuf-change" title="The “pixbuf-change” signal"><span class="type">“pixbuf-change”</span></a> signal</p></td>
1679
+ <td class="struct_member_annotations"> </td>
1680
+ </tr>
1681
+ <tr>
1682
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="ClutterTextureClass.load-finished"></a>load_finished</code></em> ()</p></td>
1683
+ <td class="struct_member_description"><p>handler for the <a class="link" href="ClutterTexture.html#ClutterTexture-load-finished" title="The “load-finished” signal"><span class="type">“load-finished”</span></a> signal</p></td>
1684
+ <td class="struct_member_annotations"> </td>
1685
+ </tr>
1686
+ </tbody>
1687
+ </table></div>
1688
+ </div>
1689
+ <p class="since">Since 0.1</p>
1690
+ </div>
1691
+ <hr>
1692
+ <div class="refsect2">
1693
+ <a name="ClutterTextureFlags"></a><h3>enum ClutterTextureFlags</h3>
1694
+ <p>Flags for <a class="link" href="ClutterTexture.html#clutter-texture-set-from-rgb-data" title="clutter_texture_set_from_rgb_data ()"><code class="function">clutter_texture_set_from_rgb_data()</code></a> and
1695
+ <a class="link" href="ClutterTexture.html#clutter-texture-set-from-yuv-data" title="clutter_texture_set_from_yuv_data ()"><code class="function">clutter_texture_set_from_yuv_data()</code></a>.</p>
1696
+ <div class="refsect3">
1697
+ <a name="id-1.10.20.11.4.4"></a><h4>Members</h4>
1698
+ <div class="informaltable"><table width="100%" border="0">
1699
+ <colgroup>
1700
+ <col width="300px" class="enum_members_name">
1701
+ <col class="enum_members_description">
1702
+ <col width="200px" class="enum_members_annotations">
1703
+ </colgroup>
1704
+ <tbody>
1705
+ <tr>
1706
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-NONE:CAPS"></a>CLUTTER_TEXTURE_NONE</p></td>
1707
+ <td class="enum_member_description">
1708
+ <p>No flags</p>
1709
+ </td>
1710
+ <td class="enum_member_annotations"> </td>
1711
+ </tr>
1712
+ <tr>
1713
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-RGB-FLAG-BGR:CAPS"></a>CLUTTER_TEXTURE_RGB_FLAG_BGR</p></td>
1714
+ <td class="enum_member_description">
1715
+ <p>FIXME</p>
1716
+ </td>
1717
+ <td class="enum_member_annotations"> </td>
1718
+ </tr>
1719
+ <tr>
1720
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-RGB-FLAG-PREMULT:CAPS"></a>CLUTTER_TEXTURE_RGB_FLAG_PREMULT</p></td>
1721
+ <td class="enum_member_description">
1722
+ <p>FIXME</p>
1723
+ </td>
1724
+ <td class="enum_member_annotations"> </td>
1725
+ </tr>
1726
+ <tr>
1727
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-YUV-FLAG-YUV2:CAPS"></a>CLUTTER_TEXTURE_YUV_FLAG_YUV2</p></td>
1728
+ <td class="enum_member_description">
1729
+ <p>FIXME</p>
1730
+ </td>
1731
+ <td class="enum_member_annotations"> </td>
1732
+ </tr>
1733
+ </tbody>
1734
+ </table></div>
1735
+ </div>
1736
+ <p class="since">Since 0.4</p>
1737
+ </div>
1738
+ <hr>
1739
+ <div class="refsect2">
1740
+ <a name="ClutterTextureQuality"></a><h3>enum ClutterTextureQuality</h3>
1741
+ <p>Enumaration controlling the texture quality.</p>
1742
+ <div class="refsect3">
1743
+ <a name="id-1.10.20.11.5.4"></a><h4>Members</h4>
1744
+ <div class="informaltable"><table width="100%" border="0">
1745
+ <colgroup>
1746
+ <col width="300px" class="enum_members_name">
1747
+ <col class="enum_members_description">
1748
+ <col width="200px" class="enum_members_annotations">
1749
+ </colgroup>
1750
+ <tbody>
1751
+ <tr>
1752
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-QUALITY-LOW:CAPS"></a>CLUTTER_TEXTURE_QUALITY_LOW</p></td>
1753
+ <td class="enum_member_description">
1754
+ <p>fastest rendering will use nearest neighbour
1755
+ interpolation when rendering. good setting.</p>
1756
+ </td>
1757
+ <td class="enum_member_annotations"> </td>
1758
+ </tr>
1759
+ <tr>
1760
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-QUALITY-MEDIUM:CAPS"></a>CLUTTER_TEXTURE_QUALITY_MEDIUM</p></td>
1761
+ <td class="enum_member_description">
1762
+ <p>higher quality rendering without using
1763
+ extra resources.</p>
1764
+ </td>
1765
+ <td class="enum_member_annotations"> </td>
1766
+ </tr>
1767
+ <tr>
1768
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-QUALITY-HIGH:CAPS"></a>CLUTTER_TEXTURE_QUALITY_HIGH</p></td>
1769
+ <td class="enum_member_description">
1770
+ <p>render the texture with the best quality
1771
+ available using extra memory.</p>
1772
+ </td>
1773
+ <td class="enum_member_annotations"> </td>
1774
+ </tr>
1775
+ </tbody>
1776
+ </table></div>
1777
+ </div>
1778
+ <p class="since">Since 0.8</p>
1779
+ </div>
1780
+ <hr>
1781
+ <div class="refsect2">
1782
+ <a name="ClutterTextureError"></a><h3>enum ClutterTextureError</h3>
1783
+ <p>Error enumeration for <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a></p>
1784
+ <div class="refsect3">
1785
+ <a name="id-1.10.20.11.6.4"></a><h4>Members</h4>
1786
+ <div class="informaltable"><table width="100%" border="0">
1787
+ <colgroup>
1788
+ <col width="300px" class="enum_members_name">
1789
+ <col class="enum_members_description">
1790
+ <col width="200px" class="enum_members_annotations">
1791
+ </colgroup>
1792
+ <tbody>
1793
+ <tr>
1794
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-ERROR-OUT-OF-MEMORY:CAPS"></a>CLUTTER_TEXTURE_ERROR_OUT_OF_MEMORY</p></td>
1795
+ <td class="enum_member_description">
1796
+ <p>OOM condition</p>
1797
+ </td>
1798
+ <td class="enum_member_annotations"> </td>
1799
+ </tr>
1800
+ <tr>
1801
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-ERROR-NO-YUV:CAPS"></a>CLUTTER_TEXTURE_ERROR_NO_YUV</p></td>
1802
+ <td class="enum_member_description">
1803
+ <p>YUV operation attempted but no YUV support
1804
+ found</p>
1805
+ </td>
1806
+ <td class="enum_member_annotations"> </td>
1807
+ </tr>
1808
+ <tr>
1809
+ <td class="enum_member_name"><p><a name="CLUTTER-TEXTURE-ERROR-BAD-FORMAT:CAPS"></a>CLUTTER_TEXTURE_ERROR_BAD_FORMAT</p></td>
1810
+ <td class="enum_member_description">
1811
+ <p>The requested format for
1812
+ clutter_texture_set_from_rgb_data or
1813
+ clutter_texture_set_from_yuv_data is unsupported.</p>
1814
+ </td>
1815
+ <td class="enum_member_annotations"> </td>
1816
+ </tr>
1817
+ </tbody>
1818
+ </table></div>
1819
+ </div>
1820
+ <p class="since">Since 0.4</p>
1821
+ </div>
1822
+ </div>
1823
+ <div class="refsect1">
1824
+ <a name="ClutterTexture.property-details"></a><h2>Property Details</h2>
1825
+ <div class="refsect2">
1826
+ <a name="ClutterTexture--cogl-material"></a><h3>The <code class="literal">“cogl-material”</code> property</h3>
1827
+ <pre class="programlisting"> “cogl-material” <span class="type">CoglHandle</span> *</pre>
1828
+ <p>The underlying Cogl material handle used to draw this actor.</p>
1829
+ <p>Flags: Read / Write</p>
1830
+ </div>
1831
+ <hr>
1832
+ <div class="refsect2">
1833
+ <a name="ClutterTexture--cogl-texture"></a><h3>The <code class="literal">“cogl-texture”</code> property</h3>
1834
+ <pre class="programlisting"> “cogl-texture” <span class="type">CoglHandle</span> *</pre>
1835
+ <p>The underlying Cogl texture handle used to draw this actor.</p>
1836
+ <p>Flags: Read / Write</p>
1837
+ </div>
1838
+ <hr>
1839
+ <div class="refsect2">
1840
+ <a name="ClutterTexture--disable-slicing"></a><h3>The <code class="literal">“disable-slicing”</code> property</h3>
1841
+ <pre class="programlisting"> “disable-slicing” <span class="type">gboolean</span></pre>
1842
+ <p>Forces the underlying texture to be singular and not made of smaller space saving individual textures.</p>
1843
+ <p>Flags: Read / Write / Construct Only</p>
1844
+ <p>Default value: FALSE</p>
1845
+ </div>
1846
+ <hr>
1847
+ <div class="refsect2">
1848
+ <a name="ClutterTexture--filename"></a><h3>The <code class="literal">“filename”</code> property</h3>
1849
+ <pre class="programlisting"> “filename” <span class="type">gchar</span> *</pre>
1850
+ <p>The path of the file containing the image data to be displayed by
1851
+ the texture.</p>
1852
+ <p>This property is unset when using the clutter_texture_set_from_*_data()
1853
+ family of functions.</p>
1854
+ <div class="warning"><p><code class="literal">ClutterTexture:filename</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1855
+ <p>Flags: Read / Write</p>
1856
+ <p>Default value: NULL</p>
1857
+ </div>
1858
+ <hr>
1859
+ <div class="refsect2">
1860
+ <a name="ClutterTexture--filter-quality"></a><h3>The <code class="literal">“filter-quality”</code> property</h3>
1861
+ <pre class="programlisting"> “filter-quality” <a class="link" href="ClutterTexture.html#ClutterTextureQuality" title="enum ClutterTextureQuality"><span class="type">ClutterTextureQuality</span></a></pre>
1862
+ <p>Rendering quality used when drawing the texture.</p>
1863
+ <p>Flags: Read / Write / Construct</p>
1864
+ <p>Default value: CLUTTER_TEXTURE_QUALITY_MEDIUM</p>
1865
+ </div>
1866
+ <hr>
1867
+ <div class="refsect2">
1868
+ <a name="ClutterTexture--keep-aspect-ratio"></a><h3>The <code class="literal">“keep-aspect-ratio”</code> property</h3>
1869
+ <pre class="programlisting"> “keep-aspect-ratio” <span class="type">gboolean</span></pre>
1870
+ <p>Keep the aspect ratio of the texture when requesting the preferred width or height.</p>
1871
+ <p>Flags: Read / Write</p>
1872
+ <p>Default value: FALSE</p>
1873
+ </div>
1874
+ <hr>
1875
+ <div class="refsect2">
1876
+ <a name="ClutterTexture--load-async"></a><h3>The <code class="literal">“load-async”</code> property</h3>
1877
+ <pre class="programlisting"> “load-async” <span class="type">gboolean</span></pre>
1878
+ <p>Tries to load a texture from a filename by using a local thread to perform
1879
+ the read operations. The initially created texture has dimensions 0x0 when
1880
+ the true size becomes available the <a class="link" href="ClutterTexture.html#ClutterTexture-size-change" title="The “size-change” signal"><span class="type">“size-change”</span></a> signal is
1881
+ emitted and when the image has completed loading the
1882
+ <a class="link" href="ClutterTexture.html#ClutterTexture-load-finished" title="The “load-finished” signal"><span class="type">“load-finished”</span></a> signal is emitted.</p>
1883
+ <p>Threading is only enabled if <code class="function">g_thread_init()</code> has been called prior to
1884
+ <a class="link" href="clutter-General.html#clutter-init" title="clutter_init ()"><code class="function">clutter_init()</code></a>, otherwise <a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> will use the main loop to load
1885
+ the image.</p>
1886
+ <p>The upload of the texture data on the GL pipeline is not asynchronous, as
1887
+ it must be performed from within the same thread that called
1888
+ <a class="link" href="clutter-General.html#clutter-main" title="clutter_main ()"><code class="function">clutter_main()</code></a>.</p>
1889
+ <div class="warning"><p><code class="literal">ClutterTexture:load-async</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1890
+ <p>Flags: Write</p>
1891
+ <p>Default value: FALSE</p>
1892
+ <p class="since">Since 1.0</p>
1893
+ </div>
1894
+ <hr>
1895
+ <div class="refsect2">
1896
+ <a name="ClutterTexture--load-data-async"></a><h3>The <code class="literal">“load-data-async”</code> property</h3>
1897
+ <pre class="programlisting"> “load-data-async” <span class="type">gboolean</span></pre>
1898
+ <p>Like <a class="link" href="ClutterTexture.html#ClutterTexture--load-async" title="The “load-async” property"><span class="type">“load-async”</span></a> but loads the width and height
1899
+ synchronously causing some blocking.</p>
1900
+ <div class="warning"><p><code class="literal">ClutterTexture:load-data-async</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1901
+ <p>Flags: Write</p>
1902
+ <p>Default value: FALSE</p>
1903
+ <p class="since">Since 1.0</p>
1904
+ </div>
1905
+ <hr>
1906
+ <div class="refsect2">
1907
+ <a name="ClutterTexture--pick-with-alpha"></a><h3>The <code class="literal">“pick-with-alpha”</code> property</h3>
1908
+ <pre class="programlisting"> “pick-with-alpha” <span class="type">gboolean</span></pre>
1909
+ <p>Shape actor with alpha channel when picking.</p>
1910
+ <p>Flags: Read / Write</p>
1911
+ <p>Default value: FALSE</p>
1912
+ </div>
1913
+ <hr>
1914
+ <div class="refsect2">
1915
+ <a name="ClutterTexture--pixel-format"></a><h3>The <code class="literal">“pixel-format”</code> property</h3>
1916
+ <pre class="programlisting"> “pixel-format” <span class="type">CoglPixelFormat</span></pre>
1917
+ <p>The Cogl pixel format to use.</p>
1918
+ <p>Flags: Read</p>
1919
+ <p>Default value: COGL_PIXEL_FORMAT_RGBA_8888</p>
1920
+ </div>
1921
+ <hr>
1922
+ <div class="refsect2">
1923
+ <a name="ClutterTexture--repeat-x"></a><h3>The <code class="literal">“repeat-x”</code> property</h3>
1924
+ <pre class="programlisting"> “repeat-x” <span class="type">gboolean</span></pre>
1925
+ <p>Repeat the contents rather than scaling them horizontally.</p>
1926
+ <p>Flags: Read / Write</p>
1927
+ <p>Default value: FALSE</p>
1928
+ </div>
1929
+ <hr>
1930
+ <div class="refsect2">
1931
+ <a name="ClutterTexture--repeat-y"></a><h3>The <code class="literal">“repeat-y”</code> property</h3>
1932
+ <pre class="programlisting"> “repeat-y” <span class="type">gboolean</span></pre>
1933
+ <p>Repeat the contents rather than scaling them vertically.</p>
1934
+ <p>Flags: Read / Write</p>
1935
+ <p>Default value: FALSE</p>
1936
+ </div>
1937
+ <hr>
1938
+ <div class="refsect2">
1939
+ <a name="ClutterTexture--sync-size"></a><h3>The <code class="literal">“sync-size”</code> property</h3>
1940
+ <pre class="programlisting"> “sync-size” <span class="type">gboolean</span></pre>
1941
+ <p>Auto sync size of actor to underlying pixbuf dimensions.</p>
1942
+ <p>Flags: Read / Write</p>
1943
+ <p>Default value: TRUE</p>
1944
+ </div>
1945
+ <hr>
1946
+ <div class="refsect2">
1947
+ <a name="ClutterTexture--tile-waste"></a><h3>The <code class="literal">“tile-waste”</code> property</h3>
1948
+ <pre class="programlisting"> “tile-waste” <span class="type">gint</span></pre>
1949
+ <p>Maximum waste area of a sliced texture.</p>
1950
+ <p>Flags: Read</p>
1951
+ <p>Allowed values: &gt;= -1</p>
1952
+ <p>Default value: 127</p>
1953
+ </div>
1954
+ </div>
1955
+ <div class="refsect1">
1956
+ <a name="ClutterTexture.signal-details"></a><h2>Signal Details</h2>
1957
+ <div class="refsect2">
1958
+ <a name="ClutterTexture-load-finished"></a><h3>The <code class="literal">“load-finished”</code> signal</h3>
1959
+ <pre class="programlisting"><span class="returnvalue">void</span>
1960
+ user_function (<a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture,
1961
+ <span class="type">GError</span> *error,
1962
+ <span class="type">gpointer</span> user_data)</pre>
1963
+ <p>The ::load-finished signal is emitted when a texture load has
1964
+ completed. If there was an error during loading, <em class="parameter"><code>error</code></em>
1965
+ will
1966
+ be set, otherwise it will be <code class="literal">NULL</code></p>
1967
+ <div class="warning"><p><code class="literal">ClutterTexture::load-finished</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
1968
+ <div class="refsect3">
1969
+ <a name="id-1.10.20.13.2.7"></a><h4>Parameters</h4>
1970
+ <div class="informaltable"><table width="100%" border="0">
1971
+ <colgroup>
1972
+ <col width="150px" class="parameters_name">
1973
+ <col class="parameters_description">
1974
+ <col width="200px" class="parameters_annotations">
1975
+ </colgroup>
1976
+ <tbody>
1977
+ <tr>
1978
+ <td class="parameter_name"><p>texture</p></td>
1979
+ <td class="parameter_description"><p>the texture which received the signal</p></td>
1980
+ <td class="parameter_annotations"> </td>
1981
+ </tr>
1982
+ <tr>
1983
+ <td class="parameter_name"><p>error</p></td>
1984
+ <td class="parameter_description"><p>A set error, or <code class="literal">NULL</code></p></td>
1985
+ <td class="parameter_annotations"> </td>
1986
+ </tr>
1987
+ <tr>
1988
+ <td class="parameter_name"><p>user_data</p></td>
1989
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1990
+ <td class="parameter_annotations"> </td>
1991
+ </tr>
1992
+ </tbody>
1993
+ </table></div>
1994
+ </div>
1995
+ <p>Flags: Run Last</p>
1996
+ <p class="since">Since 1.0</p>
1997
+ </div>
1998
+ <hr>
1999
+ <div class="refsect2">
2000
+ <a name="ClutterTexture-pixbuf-change"></a><h3>The <code class="literal">“pixbuf-change”</code> signal</h3>
2001
+ <pre class="programlisting"><span class="returnvalue">void</span>
2002
+ user_function (<a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture,
2003
+ <span class="type">gpointer</span> user_data)</pre>
2004
+ <p>The ::pixbuf-change signal is emitted each time the pixbuf
2005
+ used by <em class="parameter"><code>texture</code></em>
2006
+ changes.</p>
2007
+ <div class="warning"><p><code class="literal">ClutterTexture::pixbuf-change</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
2008
+ <div class="refsect3">
2009
+ <a name="id-1.10.20.13.3.6"></a><h4>Parameters</h4>
2010
+ <div class="informaltable"><table width="100%" border="0">
2011
+ <colgroup>
2012
+ <col width="150px" class="parameters_name">
2013
+ <col class="parameters_description">
2014
+ <col width="200px" class="parameters_annotations">
2015
+ </colgroup>
2016
+ <tbody>
2017
+ <tr>
2018
+ <td class="parameter_name"><p>texture</p></td>
2019
+ <td class="parameter_description"><p>the texture which received the signal</p></td>
2020
+ <td class="parameter_annotations"> </td>
2021
+ </tr>
2022
+ <tr>
2023
+ <td class="parameter_name"><p>user_data</p></td>
2024
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
2025
+ <td class="parameter_annotations"> </td>
2026
+ </tr>
2027
+ </tbody>
2028
+ </table></div>
2029
+ </div>
2030
+ <p>Flags: Run Last</p>
2031
+ </div>
2032
+ <hr>
2033
+ <div class="refsect2">
2034
+ <a name="ClutterTexture-size-change"></a><h3>The <code class="literal">“size-change”</code> signal</h3>
2035
+ <pre class="programlisting"><span class="returnvalue">void</span>
2036
+ user_function (<a class="link" href="ClutterTexture.html" title="ClutterTexture"><span class="type">ClutterTexture</span></a> *texture,
2037
+ <span class="type">gint</span> width,
2038
+ <span class="type">gint</span> height,
2039
+ <span class="type">gpointer</span> user_data)</pre>
2040
+ <p>The ::size-change signal is emitted each time the size of the
2041
+ pixbuf used by <em class="parameter"><code>texture</code></em>
2042
+ changes. The new size is given as
2043
+ argument to the callback.</p>
2044
+ <div class="warning"><p><code class="literal">ClutterTexture::size-change</code> has been deprecated since version 1.12 and should not be used in newly-written code.</p></div>
2045
+ <div class="refsect3">
2046
+ <a name="id-1.10.20.13.4.6"></a><h4>Parameters</h4>
2047
+ <div class="informaltable"><table width="100%" border="0">
2048
+ <colgroup>
2049
+ <col width="150px" class="parameters_name">
2050
+ <col class="parameters_description">
2051
+ <col width="200px" class="parameters_annotations">
2052
+ </colgroup>
2053
+ <tbody>
2054
+ <tr>
2055
+ <td class="parameter_name"><p>texture</p></td>
2056
+ <td class="parameter_description"><p>the texture which received the signal</p></td>
2057
+ <td class="parameter_annotations"> </td>
2058
+ </tr>
2059
+ <tr>
2060
+ <td class="parameter_name"><p>width</p></td>
2061
+ <td class="parameter_description"><p>the width of the new texture</p></td>
2062
+ <td class="parameter_annotations"> </td>
2063
+ </tr>
2064
+ <tr>
2065
+ <td class="parameter_name"><p>height</p></td>
2066
+ <td class="parameter_description"><p>the height of the new texture</p></td>
2067
+ <td class="parameter_annotations"> </td>
2068
+ </tr>
2069
+ <tr>
2070
+ <td class="parameter_name"><p>user_data</p></td>
2071
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
2072
+ <td class="parameter_annotations"> </td>
2073
+ </tr>
2074
+ </tbody>
2075
+ </table></div>
2076
+ </div>
2077
+ <p>Flags: Run Last</p>
2078
+ </div>
2079
+ </div>
2080
+ </div>
2081
+ <div class="footer">
2082
+ <hr>
2083
+ Generated by GTK-Doc V1.20.1</div>
2084
+ </body>
2085
+ </html>