clutter 2.0.2-x86-mingw32 → 2.0.3-x86-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 (480) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +4 -4
  3. data/lib/clutter.rb +1 -1
  4. data/sample/easing-modes.rb +1 -3
  5. data/test/clutter-test-utils.rb +6 -1
  6. data/test/run-test.rb +2 -0
  7. data/test/test-clutter-color.rb +8 -0
  8. data/vendor/local/bin/libclutter-1.0-0.dll +0 -0
  9. data/vendor/local/bin/libcogl-15.dll +0 -0
  10. data/vendor/local/bin/libcogl-pango-15.dll +0 -0
  11. data/vendor/local/bin/libjson-glib-1.0-0.dll +0 -0
  12. data/vendor/local/include/clutter-1.0/clutter/clutter-actor.h +16 -4
  13. data/vendor/local/include/clutter-1.0/clutter/clutter-backend.h +3 -0
  14. data/vendor/local/include/clutter-1.0/clutter/clutter-canvas.h +5 -4
  15. data/vendor/local/include/clutter-1.0/clutter/clutter-device-manager.h +3 -1
  16. data/vendor/local/include/clutter-1.0/clutter/clutter-event.h +19 -6
  17. data/vendor/local/include/clutter-1.0/clutter/clutter-flow-layout.h +5 -0
  18. data/vendor/local/include/clutter-1.0/clutter/clutter-input-device.h +2 -0
  19. data/vendor/local/include/clutter-1.0/clutter/clutter-layout-manager.h +1 -2
  20. data/vendor/local/include/clutter-1.0/clutter/clutter-macros.h +14 -0
  21. data/vendor/local/include/clutter-1.0/clutter/clutter-offscreen-effect.h +6 -0
  22. data/vendor/local/include/clutter-1.0/clutter/clutter-text.h +9 -6
  23. data/vendor/local/include/clutter-1.0/clutter/clutter-types.h +5 -1
  24. data/vendor/local/include/clutter-1.0/clutter/clutter-version.h +14 -4
  25. data/vendor/local/include/cogl/cogl-pango/cogl-pango.h +38 -4
  26. data/vendor/local/include/cogl/cogl-path/cogl-path-enum-types.h +20 -0
  27. data/vendor/local/include/cogl/{cogl/cogl-path.h → cogl-path/cogl-path-types.h} +6 -27
  28. data/vendor/local/include/cogl/cogl-path/cogl-path.h +58 -0
  29. data/vendor/local/include/cogl/{cogl/cogl-path-functions.h → cogl-path/cogl1-path-functions.h} +30 -0
  30. data/vendor/local/include/cogl/{cogl/cogl2-path.h → cogl-path/cogl2-path-functions.h} +87 -70
  31. data/vendor/local/include/cogl/cogl/cogl-atlas-texture.h +230 -0
  32. data/vendor/local/include/cogl/cogl/cogl-attribute-buffer.h +4 -3
  33. data/vendor/local/include/cogl/cogl/cogl-attribute.h +40 -34
  34. data/vendor/local/include/cogl/cogl/cogl-bitmap.h +14 -12
  35. data/vendor/local/include/cogl/cogl/cogl-buffer.h +4 -2
  36. data/vendor/local/include/cogl/cogl/cogl-clip-state.h +0 -13
  37. data/vendor/local/include/cogl/cogl/cogl-clutter.h +2 -0
  38. data/vendor/local/include/cogl/cogl/cogl-color.h +48 -7
  39. data/vendor/local/include/cogl/cogl/cogl-context.h +28 -4
  40. data/vendor/local/include/cogl/cogl/cogl-defines.h +3 -2
  41. data/vendor/local/include/cogl/cogl/cogl-depth-state.h +1 -1
  42. data/vendor/local/include/cogl/cogl/cogl-display.h +26 -3
  43. data/vendor/local/include/cogl/cogl/cogl-enum-types.h +0 -4
  44. data/vendor/local/include/cogl/cogl/cogl-error.h +4 -0
  45. data/vendor/local/include/cogl/cogl/cogl-fence.h +136 -0
  46. data/vendor/local/include/cogl/cogl/cogl-frame-info.h +2 -2
  47. data/vendor/local/include/cogl/cogl/cogl-framebuffer.h +32 -84
  48. data/vendor/local/include/cogl/cogl/cogl-glib-source.h +34 -3
  49. data/vendor/local/include/cogl/cogl/cogl-index-buffer.h +2 -0
  50. data/vendor/local/include/cogl/cogl/cogl-macros.h +253 -0
  51. data/vendor/local/include/cogl/cogl/cogl-material-compat.h +114 -6
  52. data/vendor/local/include/cogl/cogl/cogl-matrix-stack.h +1 -1
  53. data/vendor/local/include/cogl/cogl/cogl-matrix.h +8 -4
  54. data/vendor/local/include/cogl/cogl/cogl-meta-texture.h +8 -8
  55. data/vendor/local/include/cogl/cogl/cogl-object.h +6 -2
  56. data/vendor/local/include/cogl/cogl/cogl-offscreen.h +41 -6
  57. data/vendor/local/include/cogl/cogl/cogl-onscreen-template.h +1 -1
  58. data/vendor/local/include/cogl/cogl/cogl-onscreen.h +265 -45
  59. data/vendor/local/include/cogl/cogl/cogl-output.h +1 -1
  60. data/vendor/local/include/cogl/cogl/cogl-pipeline-layer-state.h +2 -2
  61. data/vendor/local/include/cogl/cogl/cogl-pipeline-state.h +57 -8
  62. data/vendor/local/include/cogl/cogl/cogl-pipeline.h +6 -5
  63. data/vendor/local/include/cogl/cogl/cogl-pixel-buffer.h +6 -2
  64. data/vendor/local/include/cogl/cogl/cogl-poll.h +44 -24
  65. data/vendor/local/include/cogl/cogl/cogl-primitive-texture.h +3 -3
  66. data/vendor/local/include/cogl/cogl/cogl-primitive.h +86 -29
  67. data/vendor/local/include/cogl/cogl/cogl-quaternion.h +7 -7
  68. data/vendor/local/include/cogl/cogl/cogl-renderer.h +7 -2
  69. data/vendor/local/include/cogl/cogl/cogl-shader.h +72 -29
  70. data/vendor/local/include/cogl/cogl/cogl-snippet.h +76 -11
  71. data/vendor/local/include/cogl/cogl/cogl-sub-texture.h +2 -2
  72. data/vendor/local/include/cogl/cogl/cogl-texture-2d-gl.h +5 -5
  73. data/vendor/local/include/cogl/cogl/cogl-texture-2d-sliced.h +167 -1
  74. data/vendor/local/include/cogl/cogl/cogl-texture-2d.h +36 -9
  75. data/vendor/local/include/cogl/cogl/cogl-texture-3d.h +6 -6
  76. data/vendor/local/include/cogl/cogl/cogl-texture-rectangle.h +13 -12
  77. data/vendor/local/include/cogl/cogl/cogl-texture.h +18 -21
  78. data/vendor/local/include/cogl/cogl/cogl-types.h +2 -1
  79. data/vendor/local/include/cogl/cogl/cogl-version.h +150 -3
  80. data/vendor/local/include/cogl/cogl/cogl-vertex-buffer.h +44 -9
  81. data/vendor/local/include/cogl/cogl/cogl-win32-renderer.h +19 -0
  82. data/vendor/local/include/cogl/cogl/cogl.h +13 -9
  83. data/vendor/local/include/cogl/cogl/cogl1-context.h +174 -67
  84. data/vendor/local/include/json-glib-1.0/json-glib/json-version.h +3 -3
  85. data/vendor/local/lib/girepository-1.0/Clutter-1.0.typelib +0 -0
  86. data/vendor/local/lib/girepository-1.0/Cogl-1.0.typelib +0 -0
  87. data/vendor/local/lib/girepository-1.0/CoglPango-1.0.typelib +0 -0
  88. data/vendor/local/lib/girepository-1.0/Json-1.0.typelib +0 -0
  89. data/vendor/local/lib/libclutter-1.0.dll.a +0 -0
  90. data/vendor/local/lib/libclutter-1.0.la +5 -5
  91. data/vendor/local/lib/libcogl-pango.dll.a +0 -0
  92. data/vendor/local/lib/libcogl-pango.la +6 -6
  93. data/vendor/local/lib/libcogl.dll.a +0 -0
  94. data/vendor/local/lib/libcogl.la +5 -5
  95. data/vendor/local/lib/libjson-glib-1.0.dll.a +0 -0
  96. data/vendor/local/lib/libjson-glib-1.0.la +2 -2
  97. data/vendor/local/lib/pkgconfig/cally-1.0.pc +1 -1
  98. data/vendor/local/lib/pkgconfig/clutter-1.0.pc +2 -2
  99. data/vendor/local/lib/pkgconfig/clutter-win32-1.0.pc +2 -2
  100. data/vendor/local/lib/pkgconfig/cogl-1.0.pc +1 -1
  101. data/vendor/local/lib/pkgconfig/cogl-gl-1.0.pc +1 -1
  102. data/vendor/local/lib/pkgconfig/cogl-pango-1.0.pc +1 -1
  103. data/vendor/local/lib/pkgconfig/cogl-pango-2.0-experimental.pc +1 -1
  104. data/vendor/local/lib/pkgconfig/json-glib-1.0.pc +1 -1
  105. data/vendor/local/share/gir-1.0/Cally-1.0.gir +74 -74
  106. data/vendor/local/share/gir-1.0/Clutter-1.0.gir +6548 -6241
  107. data/vendor/local/share/gir-1.0/Cogl-1.0.gir +1906 -1405
  108. data/vendor/local/share/gir-1.0/CoglPango-1.0.gir +69 -46
  109. data/vendor/local/share/gir-1.0/Json-1.0.gir +694 -694
  110. data/vendor/local/share/gtk-doc/html/cally/CallyActor.html +12 -15
  111. data/vendor/local/share/gtk-doc/html/cally/CallyClone.html +12 -15
  112. data/vendor/local/share/gtk-doc/html/cally/CallyGroup.html +12 -15
  113. data/vendor/local/share/gtk-doc/html/cally/CallyRectangle.html +12 -15
  114. data/vendor/local/share/gtk-doc/html/cally/CallyRoot.html +12 -15
  115. data/vendor/local/share/gtk-doc/html/cally/CallyStage.html +12 -15
  116. data/vendor/local/share/gtk-doc/html/cally/CallyText.html +12 -15
  117. data/vendor/local/share/gtk-doc/html/cally/CallyTexture.html +12 -15
  118. data/vendor/local/share/gtk-doc/html/cally/CallyUtil.html +12 -15
  119. data/vendor/local/share/gtk-doc/html/cally/cally-General-API.html +12 -15
  120. data/vendor/local/share/gtk-doc/html/cally/callyannotationglossary.html +12 -12
  121. data/vendor/local/share/gtk-doc/html/cally/callybase.html +9 -9
  122. data/vendor/local/share/gtk-doc/html/cally/callyobjecthierarchy.html +9 -9
  123. data/vendor/local/share/gtk-doc/html/cally/callyobjectindex.html +9 -9
  124. data/vendor/local/share/gtk-doc/html/cally/callyobjects.html +9 -9
  125. data/vendor/local/share/gtk-doc/html/cally/ch01.html +9 -9
  126. data/vendor/local/share/gtk-doc/html/cally/ch02.html +9 -9
  127. data/vendor/local/share/gtk-doc/html/cally/clutter-overview.html +9 -9
  128. data/vendor/local/share/gtk-doc/html/cally/home.png +0 -0
  129. data/vendor/local/share/gtk-doc/html/cally/index.html +4 -4
  130. data/vendor/local/share/gtk-doc/html/cally/index.sgml +1 -1
  131. data/vendor/local/share/gtk-doc/html/cally/ix01.html +23 -26
  132. data/vendor/local/share/gtk-doc/html/cally/ix02.html +9 -9
  133. data/vendor/local/share/gtk-doc/html/cally/ix03.html +23 -26
  134. data/vendor/local/share/gtk-doc/html/cally/ix04.html +10 -13
  135. data/vendor/local/share/gtk-doc/html/cally/left-insensitive.png +0 -0
  136. data/vendor/local/share/gtk-doc/html/cally/left.png +0 -0
  137. data/vendor/local/share/gtk-doc/html/cally/license.html +9 -9
  138. data/vendor/local/share/gtk-doc/html/cally/right-insensitive.png +0 -0
  139. data/vendor/local/share/gtk-doc/html/cally/right.png +0 -0
  140. data/vendor/local/share/gtk-doc/html/cally/style.css +71 -16
  141. data/vendor/local/share/gtk-doc/html/cally/up-insensitive.png +0 -0
  142. data/vendor/local/share/gtk-doc/html/cally/up.png +0 -0
  143. data/vendor/local/share/gtk-doc/html/clutter/ClutterAction.html +12 -15
  144. data/vendor/local/share/gtk-doc/html/clutter/ClutterActor.html +196 -87
  145. data/vendor/local/share/gtk-doc/html/clutter/ClutterActorMeta.html +12 -15
  146. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlignConstraint.html +12 -15
  147. data/vendor/local/share/gtk-doc/html/clutter/ClutterAlpha.html +28 -31
  148. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimatable.html +13 -16
  149. data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimator.html +37 -40
  150. data/vendor/local/share/gtk-doc/html/clutter/ClutterBackend.html +51 -31
  151. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviour.html +28 -31
  152. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourDepth.html +19 -22
  153. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourEllipse.html +15 -18
  154. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourOpacity.html +19 -22
  155. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourPath.html +21 -24
  156. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourRotate.html +14 -17
  157. data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourScale.html +21 -24
  158. data/vendor/local/share/gtk-doc/html/clutter/ClutterBinLayout.html +51 -54
  159. data/vendor/local/share/gtk-doc/html/clutter/ClutterBindConstraint.html +12 -15
  160. data/vendor/local/share/gtk-doc/html/clutter/ClutterBlurEffect.html +12 -15
  161. data/vendor/local/share/gtk-doc/html/clutter/ClutterBox.html +22 -25
  162. data/vendor/local/share/gtk-doc/html/clutter/ClutterBoxLayout.html +31 -34
  163. data/vendor/local/share/gtk-doc/html/clutter/ClutterBrightnessContrastEffect.html +12 -15
  164. data/vendor/local/share/gtk-doc/html/clutter/ClutterCairoTexture.html +59 -62
  165. data/vendor/local/share/gtk-doc/html/clutter/ClutterCanvas.html +49 -24
  166. data/vendor/local/share/gtk-doc/html/clutter/ClutterChildMeta.html +12 -15
  167. data/vendor/local/share/gtk-doc/html/clutter/ClutterClickAction.html +14 -17
  168. data/vendor/local/share/gtk-doc/html/clutter/ClutterClone.html +13 -16
  169. data/vendor/local/share/gtk-doc/html/clutter/ClutterColorizeEffect.html +12 -15
  170. data/vendor/local/share/gtk-doc/html/clutter/ClutterConstraint.html +14 -17
  171. data/vendor/local/share/gtk-doc/html/clutter/ClutterContainer.html +24 -27
  172. data/vendor/local/share/gtk-doc/html/clutter/ClutterContent.html +12 -15
  173. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeformEffect.html +12 -15
  174. data/vendor/local/share/gtk-doc/html/clutter/ClutterDesaturateEffect.html +12 -15
  175. data/vendor/local/share/gtk-doc/html/clutter/ClutterDeviceManager.html +13 -16
  176. data/vendor/local/share/gtk-doc/html/clutter/ClutterDragAction.html +14 -17
  177. data/vendor/local/share/gtk-doc/html/clutter/ClutterDropAction.html +13 -18
  178. data/vendor/local/share/gtk-doc/html/clutter/ClutterEffect.html +12 -15
  179. data/vendor/local/share/gtk-doc/html/clutter/ClutterFixedLayout.html +12 -15
  180. data/vendor/local/share/gtk-doc/html/clutter/ClutterFlowLayout.html +107 -16
  181. data/vendor/local/share/gtk-doc/html/clutter/ClutterGestureAction.html +33 -15
  182. data/vendor/local/share/gtk-doc/html/clutter/ClutterGridLayout.html +12 -15
  183. data/vendor/local/share/gtk-doc/html/clutter/ClutterGroup.html +16 -19
  184. data/vendor/local/share/gtk-doc/html/clutter/ClutterImage.html +26 -41
  185. data/vendor/local/share/gtk-doc/html/clutter/ClutterInputDevice.html +44 -17
  186. data/vendor/local/share/gtk-doc/html/clutter/ClutterKeyframeTransition.html +12 -15
  187. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutManager.html +15 -18
  188. data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutMeta.html +12 -15
  189. data/vendor/local/share/gtk-doc/html/clutter/ClutterListModel.html +12 -15
  190. data/vendor/local/share/gtk-doc/html/clutter/ClutterMedia.html +39 -42
  191. data/vendor/local/share/gtk-doc/html/clutter/ClutterModel.html +12 -15
  192. data/vendor/local/share/gtk-doc/html/clutter/ClutterModelIter.html +12 -15
  193. data/vendor/local/share/gtk-doc/html/clutter/ClutterOffscreenEffect.html +60 -15
  194. data/vendor/local/share/gtk-doc/html/clutter/ClutterPageTurnEffect.html +12 -15
  195. data/vendor/local/share/gtk-doc/html/clutter/ClutterPaintNode.html +12 -15
  196. data/vendor/local/share/gtk-doc/html/clutter/ClutterPanAction.html +12 -15
  197. data/vendor/local/share/gtk-doc/html/clutter/ClutterPath.html +16 -19
  198. data/vendor/local/share/gtk-doc/html/clutter/ClutterPathConstraint.html +12 -15
  199. data/vendor/local/share/gtk-doc/html/clutter/ClutterPropertyTransition.html +12 -15
  200. data/vendor/local/share/gtk-doc/html/clutter/ClutterRectangle.html +12 -15
  201. data/vendor/local/share/gtk-doc/html/clutter/ClutterRotateAction.html +12 -15
  202. data/vendor/local/share/gtk-doc/html/clutter/ClutterScore.html +32 -35
  203. data/vendor/local/share/gtk-doc/html/clutter/ClutterScript.html +14 -17
  204. data/vendor/local/share/gtk-doc/html/clutter/ClutterScriptable.html +13 -16
  205. data/vendor/local/share/gtk-doc/html/clutter/ClutterScrollActor.html +12 -15
  206. data/vendor/local/share/gtk-doc/html/clutter/ClutterSettings.html +16 -19
  207. data/vendor/local/share/gtk-doc/html/clutter/ClutterShaderEffect.html +12 -15
  208. data/vendor/local/share/gtk-doc/html/clutter/ClutterSnapConstraint.html +12 -15
  209. data/vendor/local/share/gtk-doc/html/clutter/ClutterStage.html +731 -686
  210. data/vendor/local/share/gtk-doc/html/clutter/ClutterState.html +39 -42
  211. data/vendor/local/share/gtk-doc/html/clutter/ClutterSwipeAction.html +13 -16
  212. data/vendor/local/share/gtk-doc/html/clutter/ClutterTableLayout.html +27 -30
  213. data/vendor/local/share/gtk-doc/html/clutter/ClutterTapAction.html +12 -15
  214. data/vendor/local/share/gtk-doc/html/clutter/ClutterText.html +95 -27
  215. data/vendor/local/share/gtk-doc/html/clutter/ClutterTextBuffer.html +12 -15
  216. data/vendor/local/share/gtk-doc/html/clutter/ClutterTexture.html +47 -50
  217. data/vendor/local/share/gtk-doc/html/clutter/ClutterTimeline.html +20 -23
  218. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransition.html +13 -16
  219. data/vendor/local/share/gtk-doc/html/clutter/ClutterTransitionGroup.html +12 -15
  220. data/vendor/local/share/gtk-doc/html/clutter/ClutterZoomAction.html +12 -15
  221. data/vendor/local/share/gtk-doc/html/clutter/annotation-glossary.html +59 -59
  222. data/vendor/local/share/gtk-doc/html/clutter/building-clutter.html +9 -9
  223. data/vendor/local/share/gtk-doc/html/clutter/ch01.html +9 -9
  224. data/vendor/local/share/gtk-doc/html/clutter/ch02.html +9 -9
  225. data/vendor/local/share/gtk-doc/html/clutter/ch03.html +9 -9
  226. data/vendor/local/share/gtk-doc/html/clutter/ch04.html +9 -9
  227. data/vendor/local/share/gtk-doc/html/clutter/ch05.html +9 -9
  228. data/vendor/local/share/gtk-doc/html/clutter/ch06.html +9 -9
  229. data/vendor/local/share/gtk-doc/html/clutter/ch07.html +9 -9
  230. data/vendor/local/share/gtk-doc/html/clutter/ch08.html +9 -9
  231. data/vendor/local/share/gtk-doc/html/clutter/ch09.html +9 -9
  232. data/vendor/local/share/gtk-doc/html/clutter/ch10.html +9 -9
  233. data/vendor/local/share/gtk-doc/html/clutter/ch11.html +9 -9
  234. data/vendor/local/share/gtk-doc/html/clutter/ch12.html +9 -9
  235. data/vendor/local/share/gtk-doc/html/clutter/clutter-Base-geometric-types.html +33 -24
  236. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterGLXTexturePixmap.html +34 -35
  237. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterWaylandSurface.html +18 -21
  238. data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterX11TexturePixmap.html +12 -15
  239. data/vendor/local/share/gtk-doc/html/clutter/clutter-Colors.html +12 -15
  240. data/vendor/local/share/gtk-doc/html/clutter/clutter-EGL-Specific-Support.html +14 -17
  241. data/vendor/local/share/gtk-doc/html/clutter/clutter-Events.html +96 -37
  242. data/vendor/local/share/gtk-doc/html/clutter/clutter-Features.html +12 -15
  243. data/vendor/local/share/gtk-doc/html/clutter/clutter-GDK-Specific-Support.html +13 -16
  244. data/vendor/local/share/gtk-doc/html/clutter/clutter-General.html +32 -35
  245. data/vendor/local/share/gtk-doc/html/clutter/clutter-Implicit-Animations.html +60 -63
  246. data/vendor/local/share/gtk-doc/html/clutter/clutter-Intel-CE3100-CE4100-Specific-Support.html +14 -17
  247. data/vendor/local/share/gtk-doc/html/clutter/clutter-Key-Bindings.html +12 -15
  248. data/vendor/local/share/gtk-doc/html/clutter/clutter-Paint-Nodes.html +12 -15
  249. data/vendor/local/share/gtk-doc/html/clutter/clutter-Shaders.html +33 -36
  250. data/vendor/local/share/gtk-doc/html/clutter/clutter-Stage-Manager.html +13 -16
  251. data/vendor/local/share/gtk-doc/html/clutter/clutter-Unit-conversion.html +14 -17
  252. data/vendor/local/share/gtk-doc/html/clutter/clutter-Utilities.html +23 -26
  253. data/vendor/local/share/gtk-doc/html/clutter/clutter-Value-intervals.html +20 -15
  254. data/vendor/local/share/gtk-doc/html/clutter/clutter-Versioning-Macros.html +31 -22
  255. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-compositor-specific-support.html +13 -16
  256. data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-specific-support.html +259 -0
  257. data/vendor/local/share/gtk-doc/html/clutter/clutter-Win32-Specific-Support.html +12 -15
  258. data/vendor/local/share/gtk-doc/html/clutter/clutter-X11-Specific-Support.html +19 -22
  259. data/vendor/local/share/gtk-doc/html/clutter/clutter-overview.html +9 -9
  260. data/vendor/local/share/gtk-doc/html/clutter/clutter.devhelp2 +48 -25
  261. data/vendor/local/share/gtk-doc/html/clutter/clutteranimation.html +9 -9
  262. data/vendor/local/share/gtk-doc/html/clutter/clutterbackends.html +12 -9
  263. data/vendor/local/share/gtk-doc/html/clutter/clutterbase.html +9 -9
  264. data/vendor/local/share/gtk-doc/html/clutter/clutterglossary.html +9 -9
  265. data/vendor/local/share/gtk-doc/html/clutter/clutterobjecthierarchy.html +9 -9
  266. data/vendor/local/share/gtk-doc/html/clutter/clutterobjectindex.html +9 -9
  267. data/vendor/local/share/gtk-doc/html/clutter/clutterobjects.html +9 -9
  268. data/vendor/local/share/gtk-doc/html/clutter/cluttertools.html +9 -9
  269. data/vendor/local/share/gtk-doc/html/clutter/deprecated.html +9 -9
  270. data/vendor/local/share/gtk-doc/html/clutter/go01.html +9 -9
  271. data/vendor/local/share/gtk-doc/html/clutter/home.png +0 -0
  272. data/vendor/local/share/gtk-doc/html/clutter/index.html +7 -4
  273. data/vendor/local/share/gtk-doc/html/clutter/index.sgml +55 -26
  274. data/vendor/local/share/gtk-doc/html/clutter/iterating-paths.html +9 -9
  275. data/vendor/local/share/gtk-doc/html/clutter/ix01.html +155 -70
  276. data/vendor/local/share/gtk-doc/html/clutter/ix02.html +89 -45
  277. data/vendor/local/share/gtk-doc/html/clutter/ix03.html +39 -34
  278. data/vendor/local/share/gtk-doc/html/clutter/ix04.html +37 -40
  279. data/vendor/local/share/gtk-doc/html/clutter/ix05.html +33 -36
  280. data/vendor/local/share/gtk-doc/html/clutter/ix06.html +40 -43
  281. data/vendor/local/share/gtk-doc/html/clutter/ix07.html +39 -42
  282. data/vendor/local/share/gtk-doc/html/clutter/ix08.html +35 -38
  283. data/vendor/local/share/gtk-doc/html/clutter/ix09.html +33 -36
  284. data/vendor/local/share/gtk-doc/html/clutter/ix10.html +25 -28
  285. data/vendor/local/share/gtk-doc/html/clutter/ix11.html +31 -34
  286. data/vendor/local/share/gtk-doc/html/clutter/ix12.html +56 -47
  287. data/vendor/local/share/gtk-doc/html/clutter/ix13.html +49 -52
  288. data/vendor/local/share/gtk-doc/html/clutter/ix14.html +36 -24
  289. data/vendor/local/share/gtk-doc/html/clutter/left-insensitive.png +0 -0
  290. data/vendor/local/share/gtk-doc/html/clutter/left.png +0 -0
  291. data/vendor/local/share/gtk-doc/html/clutter/license.html +9 -9
  292. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterAnimation.html +9 -9
  293. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterBehaviour.html +9 -9
  294. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterEffect.html +9 -9
  295. data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterPath.html +10 -10
  296. data/vendor/local/share/gtk-doc/html/clutter/migration.html +9 -9
  297. data/vendor/local/share/gtk-doc/html/clutter/pt09.html +9 -9
  298. data/vendor/local/share/gtk-doc/html/clutter/right-insensitive.png +0 -0
  299. data/vendor/local/share/gtk-doc/html/clutter/right.png +0 -0
  300. data/vendor/local/share/gtk-doc/html/clutter/running-clutter.html +9 -9
  301. data/vendor/local/share/gtk-doc/html/clutter/style.css +71 -16
  302. data/vendor/local/share/gtk-doc/html/clutter/up-insensitive.png +0 -0
  303. data/vendor/local/share/gtk-doc/html/clutter/up.png +0 -0
  304. data/vendor/local/share/gtk-doc/html/clutter/using-cairo.html +9 -9
  305. data/vendor/local/share/gtk-doc/html/json-glib/index.html +1 -1
  306. data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html +3 -3
  307. data/vendor/local/share/locale/an/LC_MESSAGES/clutter-1.0.mo +0 -0
  308. data/vendor/local/share/locale/an/LC_MESSAGES/cogl.mo +0 -0
  309. data/vendor/local/share/locale/ar/LC_MESSAGES/clutter-1.0.mo +0 -0
  310. data/vendor/local/share/locale/ar/LC_MESSAGES/cogl.mo +0 -0
  311. data/vendor/local/share/locale/as/LC_MESSAGES/clutter-1.0.mo +0 -0
  312. data/vendor/local/share/locale/as/LC_MESSAGES/cogl.mo +0 -0
  313. data/vendor/local/share/locale/as/LC_MESSAGES/json-glib-1.0.mo +0 -0
  314. data/vendor/local/share/locale/ast/LC_MESSAGES/clutter-1.0.mo +0 -0
  315. data/vendor/local/share/locale/ast/LC_MESSAGES/cogl.mo +0 -0
  316. data/vendor/local/share/locale/az_IR/LC_MESSAGES/clutter-1.0.mo +0 -0
  317. data/vendor/local/share/locale/be/LC_MESSAGES/clutter-1.0.mo +0 -0
  318. data/vendor/local/share/locale/be/LC_MESSAGES/cogl.mo +0 -0
  319. data/vendor/local/share/locale/bg/LC_MESSAGES/clutter-1.0.mo +0 -0
  320. data/vendor/local/share/locale/bg/LC_MESSAGES/cogl.mo +0 -0
  321. data/vendor/local/share/locale/bg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  322. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  323. data/vendor/local/share/locale/ca/LC_MESSAGES/clutter-1.0.mo +0 -0
  324. data/vendor/local/share/locale/ca/LC_MESSAGES/cogl.mo +0 -0
  325. data/vendor/local/share/locale/ca/LC_MESSAGES/json-glib-1.0.mo +0 -0
  326. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/clutter-1.0.mo +0 -0
  327. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/cogl.mo +0 -0
  328. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/json-glib-1.0.mo +0 -0
  329. data/vendor/local/share/locale/cs/LC_MESSAGES/clutter-1.0.mo +0 -0
  330. data/vendor/local/share/locale/cs/LC_MESSAGES/cogl.mo +0 -0
  331. data/vendor/local/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo +0 -0
  332. data/vendor/local/share/locale/da/LC_MESSAGES/clutter-1.0.mo +0 -0
  333. data/vendor/local/share/locale/da/LC_MESSAGES/cogl.mo +0 -0
  334. data/vendor/local/share/locale/da/LC_MESSAGES/json-glib-1.0.mo +0 -0
  335. data/vendor/local/share/locale/de/LC_MESSAGES/clutter-1.0.mo +0 -0
  336. data/vendor/local/share/locale/de/LC_MESSAGES/cogl.mo +0 -0
  337. data/vendor/local/share/locale/de/LC_MESSAGES/json-glib-1.0.mo +0 -0
  338. data/vendor/local/share/locale/el/LC_MESSAGES/clutter-1.0.mo +0 -0
  339. data/vendor/local/share/locale/el/LC_MESSAGES/cogl.mo +0 -0
  340. data/vendor/local/share/locale/el/LC_MESSAGES/json-glib-1.0.mo +0 -0
  341. data/vendor/local/share/locale/en_CA/LC_MESSAGES/cogl.mo +0 -0
  342. data/vendor/local/share/locale/en_GB/LC_MESSAGES/clutter-1.0.mo +0 -0
  343. data/vendor/local/share/locale/en_GB/LC_MESSAGES/cogl.mo +0 -0
  344. data/vendor/local/share/locale/en_GB/LC_MESSAGES/json-glib-1.0.mo +0 -0
  345. data/vendor/local/share/locale/eo/LC_MESSAGES/clutter-1.0.mo +0 -0
  346. data/vendor/local/share/locale/eo/LC_MESSAGES/cogl.mo +0 -0
  347. data/vendor/local/share/locale/eo/LC_MESSAGES/json-glib-1.0.mo +0 -0
  348. data/vendor/local/share/locale/es/LC_MESSAGES/clutter-1.0.mo +0 -0
  349. data/vendor/local/share/locale/es/LC_MESSAGES/cogl.mo +0 -0
  350. data/vendor/local/share/locale/es/LC_MESSAGES/json-glib-1.0.mo +0 -0
  351. data/vendor/local/share/locale/et/LC_MESSAGES/json-glib-1.0.mo +0 -0
  352. data/vendor/local/share/locale/eu/LC_MESSAGES/cogl.mo +0 -0
  353. data/vendor/local/share/locale/eu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  354. data/vendor/local/share/locale/fa/LC_MESSAGES/clutter-1.0.mo +0 -0
  355. data/vendor/local/share/locale/fa/LC_MESSAGES/cogl.mo +0 -0
  356. data/vendor/local/share/locale/fi/LC_MESSAGES/clutter-1.0.mo +0 -0
  357. data/vendor/local/share/locale/fr/LC_MESSAGES/clutter-1.0.mo +0 -0
  358. data/vendor/local/share/locale/fr/LC_MESSAGES/cogl.mo +0 -0
  359. data/vendor/local/share/locale/fr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  360. data/vendor/local/share/locale/gl/LC_MESSAGES/clutter-1.0.mo +0 -0
  361. data/vendor/local/share/locale/gl/LC_MESSAGES/cogl.mo +0 -0
  362. data/vendor/local/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  363. data/vendor/local/share/locale/he/LC_MESSAGES/clutter-1.0.mo +0 -0
  364. data/vendor/local/share/locale/he/LC_MESSAGES/cogl.mo +0 -0
  365. data/vendor/local/share/locale/hi/LC_MESSAGES/clutter-1.0.mo +0 -0
  366. data/vendor/local/share/locale/hi/LC_MESSAGES/cogl.mo +0 -0
  367. data/vendor/local/share/locale/hi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  368. data/vendor/local/share/locale/hu/LC_MESSAGES/clutter-1.0.mo +0 -0
  369. data/vendor/local/share/locale/hu/LC_MESSAGES/cogl.mo +0 -0
  370. data/vendor/local/share/locale/hu/LC_MESSAGES/json-glib-1.0.mo +0 -0
  371. data/vendor/local/share/locale/id/LC_MESSAGES/clutter-1.0.mo +0 -0
  372. data/vendor/local/share/locale/id/LC_MESSAGES/cogl.mo +0 -0
  373. data/vendor/local/share/locale/id/LC_MESSAGES/json-glib-1.0.mo +0 -0
  374. data/vendor/local/share/locale/it/LC_MESSAGES/clutter-1.0.mo +0 -0
  375. data/vendor/local/share/locale/it/LC_MESSAGES/cogl.mo +0 -0
  376. data/vendor/local/share/locale/it/LC_MESSAGES/json-glib-1.0.mo +0 -0
  377. data/vendor/local/share/locale/ja/LC_MESSAGES/clutter-1.0.mo +0 -0
  378. data/vendor/local/share/locale/ja/LC_MESSAGES/cogl.mo +0 -0
  379. data/vendor/local/share/locale/ja/LC_MESSAGES/json-glib-1.0.mo +0 -0
  380. data/vendor/local/share/locale/km/LC_MESSAGES/clutter-1.0.mo +0 -0
  381. data/vendor/local/share/locale/km/LC_MESSAGES/cogl.mo +0 -0
  382. data/vendor/local/share/locale/kn/LC_MESSAGES/clutter-1.0.mo +0 -0
  383. data/vendor/local/share/locale/kn/LC_MESSAGES/cogl.mo +0 -0
  384. data/vendor/local/share/locale/ko/LC_MESSAGES/cogl.mo +0 -0
  385. data/vendor/local/share/locale/ko/LC_MESSAGES/json-glib-1.0.mo +0 -0
  386. data/vendor/local/share/locale/ky/LC_MESSAGES/json-glib-1.0.mo +0 -0
  387. data/vendor/local/share/locale/lt/LC_MESSAGES/clutter-1.0.mo +0 -0
  388. data/vendor/local/share/locale/lt/LC_MESSAGES/cogl.mo +0 -0
  389. data/vendor/local/share/locale/lt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  390. data/vendor/local/share/locale/lv/LC_MESSAGES/clutter-1.0.mo +0 -0
  391. data/vendor/local/share/locale/lv/LC_MESSAGES/cogl.mo +0 -0
  392. data/vendor/local/share/locale/lv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  393. data/vendor/local/share/locale/mk/LC_MESSAGES/clutter-1.0.mo +0 -0
  394. data/vendor/local/share/locale/ml/LC_MESSAGES/clutter-1.0.mo +0 -0
  395. data/vendor/local/share/locale/ml/LC_MESSAGES/cogl.mo +0 -0
  396. data/vendor/local/share/locale/ml/LC_MESSAGES/json-glib-1.0.mo +0 -0
  397. data/vendor/local/share/locale/nb/LC_MESSAGES/clutter-1.0.mo +0 -0
  398. data/vendor/local/share/locale/nb/LC_MESSAGES/cogl.mo +0 -0
  399. data/vendor/local/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo +0 -0
  400. data/vendor/local/share/locale/nl/LC_MESSAGES/clutter-1.0.mo +0 -0
  401. data/vendor/local/share/locale/nl/LC_MESSAGES/cogl.mo +0 -0
  402. data/vendor/local/share/locale/or/LC_MESSAGES/clutter-1.0.mo +0 -0
  403. data/vendor/local/share/locale/or/LC_MESSAGES/cogl.mo +0 -0
  404. data/vendor/local/share/locale/or/LC_MESSAGES/json-glib-1.0.mo +0 -0
  405. data/vendor/local/share/locale/pa/LC_MESSAGES/clutter-1.0.mo +0 -0
  406. data/vendor/local/share/locale/pa/LC_MESSAGES/cogl.mo +0 -0
  407. data/vendor/local/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo +0 -0
  408. data/vendor/local/share/locale/pl/LC_MESSAGES/clutter-1.0.mo +0 -0
  409. data/vendor/local/share/locale/pl/LC_MESSAGES/cogl.mo +0 -0
  410. data/vendor/local/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  411. data/vendor/local/share/locale/ps/LC_MESSAGES/clutter-1.0.mo +0 -0
  412. data/vendor/local/share/locale/pt/LC_MESSAGES/clutter-1.0.mo +0 -0
  413. data/vendor/local/share/locale/pt/LC_MESSAGES/cogl.mo +0 -0
  414. data/vendor/local/share/locale/pt/LC_MESSAGES/json-glib-1.0.mo +0 -0
  415. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/clutter-1.0.mo +0 -0
  416. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/cogl.mo +0 -0
  417. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo +0 -0
  418. data/vendor/local/share/locale/ro/LC_MESSAGES/clutter-1.0.mo +0 -0
  419. data/vendor/local/share/locale/ru/LC_MESSAGES/clutter-1.0.mo +0 -0
  420. data/vendor/local/share/locale/ru/LC_MESSAGES/cogl.mo +0 -0
  421. data/vendor/local/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo +0 -0
  422. data/vendor/local/share/locale/sk/LC_MESSAGES/clutter-1.0.mo +0 -0
  423. data/vendor/local/share/locale/sk/LC_MESSAGES/cogl.mo +0 -0
  424. data/vendor/local/share/locale/sk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  425. data/vendor/local/share/locale/sl/LC_MESSAGES/clutter-1.0.mo +0 -0
  426. data/vendor/local/share/locale/sl/LC_MESSAGES/cogl.mo +0 -0
  427. data/vendor/local/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo +0 -0
  428. data/vendor/local/share/locale/sr/LC_MESSAGES/clutter-1.0.mo +0 -0
  429. data/vendor/local/share/locale/sr/LC_MESSAGES/cogl.mo +0 -0
  430. data/vendor/local/share/locale/sr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  431. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/clutter-1.0.mo +0 -0
  432. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/cogl.mo +0 -0
  433. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/json-glib-1.0.mo +0 -0
  434. data/vendor/local/share/locale/sv/LC_MESSAGES/clutter-1.0.mo +0 -0
  435. data/vendor/local/share/locale/sv/LC_MESSAGES/cogl.mo +0 -0
  436. data/vendor/local/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo +0 -0
  437. data/vendor/local/share/locale/ta/LC_MESSAGES/clutter-1.0.mo +0 -0
  438. data/vendor/local/share/locale/ta/LC_MESSAGES/cogl.mo +0 -0
  439. data/vendor/local/share/locale/te/LC_MESSAGES/clutter-1.0.mo +0 -0
  440. data/vendor/local/share/locale/te/LC_MESSAGES/cogl.mo +0 -0
  441. data/vendor/local/share/locale/te/LC_MESSAGES/json-glib-1.0.mo +0 -0
  442. data/vendor/local/share/locale/tg/LC_MESSAGES/json-glib-1.0.mo +0 -0
  443. data/vendor/local/share/locale/th/LC_MESSAGES/cogl.mo +0 -0
  444. data/vendor/local/share/locale/tr/LC_MESSAGES/clutter-1.0.mo +0 -0
  445. data/vendor/local/share/locale/tr/LC_MESSAGES/cogl.mo +0 -0
  446. data/vendor/local/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo +0 -0
  447. data/vendor/local/share/locale/ug/LC_MESSAGES/clutter-1.0.mo +0 -0
  448. data/vendor/local/share/locale/ug/LC_MESSAGES/cogl.mo +0 -0
  449. data/vendor/local/share/locale/ug/LC_MESSAGES/json-glib-1.0.mo +0 -0
  450. data/vendor/local/share/locale/uk/LC_MESSAGES/clutter-1.0.mo +0 -0
  451. data/vendor/local/share/locale/uk/LC_MESSAGES/cogl.mo +0 -0
  452. data/vendor/local/share/locale/uk/LC_MESSAGES/json-glib-1.0.mo +0 -0
  453. data/vendor/local/share/locale/ur/LC_MESSAGES/clutter-1.0.mo +0 -0
  454. data/vendor/local/share/locale/vi/LC_MESSAGES/cogl.mo +0 -0
  455. data/vendor/local/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo +0 -0
  456. data/vendor/local/share/locale/yi/LC_MESSAGES/clutter-1.0.mo +0 -0
  457. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/clutter-1.0.mo +0 -0
  458. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cogl.mo +0 -0
  459. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/json-glib-1.0.mo +0 -0
  460. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/clutter-1.0.mo +0 -0
  461. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/cogl.mo +0 -0
  462. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/json-glib-1.0.mo +0 -0
  463. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/clutter-1.0.mo +0 -0
  464. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/cogl.mo +0 -0
  465. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/json-glib-1.0.mo +0 -0
  466. metadata +39 -51
  467. data/vendor/local/bin/libcogl-12.dll +0 -0
  468. data/vendor/local/bin/libcogl-pango-12.dll +0 -0
  469. data/vendor/local/bin/libglut-0.dll +0 -0
  470. data/vendor/local/include/GL/freeglut.h +0 -22
  471. data/vendor/local/include/GL/freeglut_ext.h +0 -239
  472. data/vendor/local/include/GL/freeglut_std.h +0 -636
  473. data/vendor/local/include/GL/glut.h +0 -21
  474. data/vendor/local/include/cogl/cogl/cogl2-compatibility.h +0 -55
  475. data/vendor/local/lib/libglut.a +0 -0
  476. data/vendor/local/lib/libglut.dll.a +0 -0
  477. data/vendor/local/lib/libglut.la +0 -41
  478. data/vendor/local/share/license/freeglut/AUTHORS +0 -39
  479. data/vendor/local/share/license/freeglut/COPYING +0 -27
  480. data/vendor/local/share/locale/tg/LC_MESSAGES/clutter-1.0.mo +0 -0
@@ -34,6 +34,7 @@
34
34
  #include <cogl/cogl-types.h>
35
35
  #include <cogl/cogl-texture.h>
36
36
  #include <cogl/cogl-framebuffer.h>
37
+ #include <cogl/cogl-macros.h>
37
38
 
38
39
  COGL_BEGIN_DECLS
39
40
 
@@ -47,7 +48,9 @@ COGL_BEGIN_DECLS
47
48
  * Return value: a #GOptionGroup
48
49
  *
49
50
  * Since: 1.0
51
+ * Deprecated: 1.16: Not replaced
50
52
  */
53
+ COGL_DEPRECATED_IN_1_16
51
54
  GOptionGroup *
52
55
  cogl_get_option_group (void);
53
56
 
@@ -60,7 +63,9 @@ cogl_get_option_group (void);
60
63
  * Return value: A logical OR of all the supported COGL features.
61
64
  *
62
65
  * Since: 0.8
66
+ * Deprecated: 1.10: Use cogl_foreach_feature() instead
63
67
  */
68
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_foreach_feature)
64
69
  CoglFeatureFlags
65
70
  cogl_get_features (void);
66
71
 
@@ -74,7 +79,9 @@ cogl_get_features (void);
74
79
  * are available.
75
80
  *
76
81
  * Return value: %TRUE if the features are available, %FALSE otherwise.
82
+ * Deprecated: 1.10: Use cogl_has_feature() instead
77
83
  */
84
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_has_feature)
78
85
  CoglBool
79
86
  cogl_features_available (CoglFeatureFlags features);
80
87
 
@@ -96,8 +103,6 @@ cogl_features_available (CoglFeatureFlags features);
96
103
  CoglFuncPtr
97
104
  cogl_get_proc_address (const char *name);
98
105
 
99
- #ifndef COGL_DISABLE_DEPRECATED
100
-
101
106
  /**
102
107
  * cogl_check_extension:
103
108
  * @name: extension to check for
@@ -114,11 +119,10 @@ cogl_get_proc_address (const char *name);
114
119
  * CoglBool retval = (strstr (ext, name) != NULL) ? TRUE : FALSE;
115
120
  * ]|
116
121
  */
122
+ COGL_DEPRECATED
117
123
  CoglBool
118
124
  cogl_check_extension (const char *name,
119
- const char *ext) G_GNUC_DEPRECATED;
120
-
121
- #endif /* COGL_DISABLE_DEPRECATED */
125
+ const char *ext);
122
126
 
123
127
  /**
124
128
  * cogl_get_bitmasks:
@@ -130,7 +134,11 @@ cogl_check_extension (const char *name,
130
134
  * Gets the number of bitplanes used for each of the color components
131
135
  * in the color buffer. Pass %NULL for any of the arguments if the
132
136
  * value is not required.
137
+ *
138
+ * Deprecated: 1.8: Use cogl_framebuffer_get_red/green/blue/alpha_bits()
139
+ * instead
133
140
  */
141
+ COGL_DEPRECATED_IN_1_8_FOR (cogl_framebuffer_get_red_OR_green_OR_blue_OR_alpha_bits)
134
142
  void
135
143
  cogl_get_bitmasks (int *red,
136
144
  int *green,
@@ -151,7 +159,10 @@ cogl_get_bitmasks (int *red,
151
159
  * ratio since that will reduce the effectiveness of depth testing
152
160
  * since there wont be enough precision to identify the depth of
153
161
  * objects near to each other.</note>
162
+ *
163
+ * Deprecated: 1.10: Use cogl_framebuffer_perspective() instead
154
164
  */
165
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_perspective)
155
166
  void
156
167
  cogl_perspective (float fovy,
157
168
  float aspect,
@@ -176,7 +187,9 @@ cogl_perspective (float fovy,
176
187
  * all cross through the origin and 2 near and far clip planes.
177
188
  *
178
189
  * Since: 0.8.2
190
+ * Deprecated: 1.10: Use cogl_framebuffer_frustum() instead
179
191
  */
192
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_frustum)
180
193
  void
181
194
  cogl_frustum (float left,
182
195
  float right,
@@ -213,7 +226,9 @@ cogl_frustum (float left,
213
226
  * left, right bottom and top arguments.</note>
214
227
  *
215
228
  * Since: 1.0
229
+ * Deprecated: 1.10: Use cogl_framebuffer_orthographic() instead
216
230
  */
231
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_orthographic)
217
232
  void
218
233
  cogl_ortho (float left,
219
234
  float right,
@@ -222,8 +237,6 @@ cogl_ortho (float left,
222
237
  float near,
223
238
  float far);
224
239
 
225
- #ifndef COGL_DISABLE_DEPRECATED
226
-
227
240
  /**
228
241
  * cogl_viewport:
229
242
  * @width: Width of the viewport
@@ -232,14 +245,12 @@ cogl_ortho (float left,
232
245
  * Replace the current viewport with the given values.
233
246
  *
234
247
  * Since: 0.8.2
235
- *
236
- * Deprecated: 1.2: Use cogl_set_viewport() instead
248
+ * Deprecated: 1.8: Use cogl_framebuffer_set_viewport instead
237
249
  */
250
+ COGL_DEPRECATED_IN_1_8_FOR (cogl_framebuffer_set_viewport)
238
251
  void
239
252
  cogl_viewport (unsigned int width,
240
- unsigned int height) G_GNUC_DEPRECATED;
241
-
242
- #endif /* COGL_DISABLE_DEPRECATED */
253
+ unsigned int height);
243
254
 
244
255
  /**
245
256
  * cogl_set_viewport:
@@ -251,7 +262,9 @@ cogl_viewport (unsigned int width,
251
262
  * Replaces the current viewport with the given values.
252
263
  *
253
264
  * Since: 1.2
265
+ * Deprecated: 1.8: Use cogl_framebuffer_set_viewport() instead
254
266
  */
267
+ COGL_DEPRECATED_IN_1_8_FOR (cogl_framebuffer_set_viewport)
255
268
  void
256
269
  cogl_set_viewport (int x,
257
270
  int y,
@@ -263,7 +276,10 @@ cogl_set_viewport (int x,
263
276
  *
264
277
  * Stores the current model-view matrix on the matrix stack. The matrix
265
278
  * can later be restored with cogl_pop_matrix().
279
+ *
280
+ * Deprecated: 1.10: Use cogl_framebuffer_push_matrix() instead
266
281
  */
282
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_push_matrix)
267
283
  void
268
284
  cogl_push_matrix (void);
269
285
 
@@ -271,7 +287,10 @@ cogl_push_matrix (void);
271
287
  * cogl_pop_matrix:
272
288
  *
273
289
  * Restores the current model-view matrix from the matrix stack.
290
+ *
291
+ * Deprecated: 1.10: Use cogl_framebuffer_pop_matrix() instead
274
292
  */
293
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_push_matrix)
275
294
  void
276
295
  cogl_pop_matrix (void);
277
296
 
@@ -283,7 +302,10 @@ cogl_pop_matrix (void);
283
302
  *
284
303
  * Multiplies the current model-view matrix by one that scales the x,
285
304
  * y and z axes by the given values.
305
+ *
306
+ * Deprecated: 1.10: Use cogl_framebuffer_pop_matrix() instead
286
307
  */
308
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_scale)
287
309
  void
288
310
  cogl_scale (float x,
289
311
  float y,
@@ -297,7 +319,10 @@ cogl_scale (float x,
297
319
  *
298
320
  * Multiplies the current model-view matrix by one that translates the
299
321
  * model along all three axes according to the given values.
322
+ *
323
+ * Deprecated: 1.10: Use cogl_framebuffer_translate() instead
300
324
  */
325
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_translate)
301
326
  void
302
327
  cogl_translate (float x,
303
328
  float y,
@@ -315,7 +340,10 @@ cogl_translate (float x,
315
340
  * follows the right-hand thumb rule so for example rotating by 10
316
341
  * degrees about the vertex (0, 0, 1) causes a small counter-clockwise
317
342
  * rotation.
343
+ *
344
+ * Deprecated: 1.10: Use cogl_framebuffer_rotate() instead
318
345
  */
346
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_rotate)
319
347
  void
320
348
  cogl_rotate (float angle,
321
349
  float x,
@@ -329,7 +357,9 @@ cogl_rotate (float angle,
329
357
  * Multiplies the current model-view matrix by the given matrix.
330
358
  *
331
359
  * Since: 1.4
360
+ * Deprecated: 1.10: Use cogl_framebuffer_transform() instead
332
361
  */
362
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_transform)
333
363
  void
334
364
  cogl_transform (const CoglMatrix *matrix);
335
365
 
@@ -338,7 +368,11 @@ cogl_transform (const CoglMatrix *matrix);
338
368
  * @matrix: (out): return location for the model-view matrix
339
369
  *
340
370
  * Stores the current model-view matrix in @matrix.
371
+ *
372
+ * Deprecated: 1.10: Use cogl_framebuffer_get_modelview_matrix()
373
+ * instead
341
374
  */
375
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_get_modelview_matrix)
342
376
  void
343
377
  cogl_get_modelview_matrix (CoglMatrix *matrix);
344
378
 
@@ -347,7 +381,11 @@ cogl_get_modelview_matrix (CoglMatrix *matrix);
347
381
  * @matrix: the new model-view matrix
348
382
  *
349
383
  * Loads @matrix as the new model-view matrix.
384
+ *
385
+ * Deprecated: 1.10: Use cogl_framebuffer_set_modelview_matrix()
386
+ * instead
350
387
  */
388
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_set_modelview_matrix)
351
389
  void
352
390
  cogl_set_modelview_matrix (CoglMatrix *matrix);
353
391
 
@@ -356,7 +394,11 @@ cogl_set_modelview_matrix (CoglMatrix *matrix);
356
394
  * @matrix: (out): return location for the projection matrix
357
395
  *
358
396
  * Stores the current projection matrix in @matrix.
397
+ *
398
+ * Deprecated: 1.10: Use cogl_framebuffer_get_projection_matrix()
399
+ * instead
359
400
  */
401
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_get_projection_matrix)
360
402
  void
361
403
  cogl_get_projection_matrix (CoglMatrix *matrix);
362
404
 
@@ -365,7 +407,11 @@ cogl_get_projection_matrix (CoglMatrix *matrix);
365
407
  * @matrix: the new projection matrix
366
408
  *
367
409
  * Loads matrix as the new projection matrix.
410
+ *
411
+ * Deprecated: 1.10: Use cogl_framebuffer_set_projection_matrix()
412
+ * instead
368
413
  */
414
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_set_projection_matrix)
369
415
  void
370
416
  cogl_set_projection_matrix (CoglMatrix *matrix);
371
417
 
@@ -377,7 +423,11 @@ cogl_set_projection_matrix (CoglMatrix *matrix);
377
423
  * Stores the current viewport in @v. @v[0] and @v[1] get the x and y
378
424
  * position of the viewport and @v[2] and @v[3] get the width and
379
425
  * height.
426
+ *
427
+ * Deprecated: 1.10: Use cogl_framebuffer_get_viewport4fv()
428
+ * instead
380
429
  */
430
+ COGL_DEPRECATED_IN_1_10_FOR (cogl_framebuffer_get_viewport4fv)
381
431
  void
382
432
  cogl_get_viewport (float v[4]);
383
433
 
@@ -391,9 +441,9 @@ cogl_get_viewport (float v[4]);
391
441
  * clutter_actor_lower(), otherwise it will also take into account the
392
442
  * actor's depth. Depth testing is disabled by default.
393
443
  *
394
- * Deprecated: 1.4: Use cogl_material_set_depth_test_enabled()
395
- * instead.
444
+ * Deprecated: 1.16: Use cogl_pipeline_set_depth_state() instead
396
445
  */
446
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_pipeline_set_depth_state)
397
447
  void
398
448
  cogl_set_depth_test_enabled (CoglBool setting);
399
449
 
@@ -404,9 +454,9 @@ cogl_set_depth_test_enabled (CoglBool setting);
404
454
  *
405
455
  * Return value: %TRUE if depth testing is enabled, and %FALSE otherwise
406
456
  *
407
- * Deprecated: 1.4: Use cogl_material_get_depth_test_enabled()
408
- * instead.
457
+ * Deprecated: 1.16: Use cogl_pipeline_set_depth_state() instead
409
458
  */
459
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_pipeline_set_depth_state)
410
460
  CoglBool
411
461
  cogl_get_depth_test_enabled (void);
412
462
 
@@ -419,7 +469,10 @@ cogl_get_depth_test_enabled (void);
419
469
  * textures or fully closed cubes without enabling depth testing. This
420
470
  * only affects calls to the cogl_rectangle* family of functions and
421
471
  * cogl_vertex_buffer_draw*. Backface culling is disabled by default.
472
+ *
473
+ * Deprecated: 1.16: Use cogl_pipeline_set_cull_face_mode() instead
422
474
  */
475
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_pipeline_set_cull_face_mode)
423
476
  void
424
477
  cogl_set_backface_culling_enabled (CoglBool setting);
425
478
 
@@ -430,7 +483,10 @@ cogl_set_backface_culling_enabled (CoglBool setting);
430
483
  * cogl_set_backface_culling_enabled()
431
484
  *
432
485
  * Return value: %TRUE if backface culling is enabled, and %FALSE otherwise
486
+ *
487
+ * Deprecated: 1.16: Use cogl_pipeline_get_cull_face_mode() instead
433
488
  */
489
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_pipeline_get_cull_face_mode)
434
490
  CoglBool
435
491
  cogl_get_backface_culling_enabled (void);
436
492
 
@@ -458,7 +514,10 @@ cogl_get_backface_culling_enabled (void);
458
514
  * and use cogl_material_set_color() you can only use fogging with fully
459
515
  * opaque primitives. This might improve in the future when we can depend
460
516
  * on fragment shaders.</note>
517
+ *
518
+ * Deprecated: 1.16: Use #CoglSnippet shader api for fog
461
519
  */
520
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_snippet_API)
462
521
  void
463
522
  cogl_set_fog (const CoglColor *fog_color,
464
523
  CoglFogMode mode,
@@ -471,7 +530,10 @@ cogl_set_fog (const CoglColor *fog_color,
471
530
  *
472
531
  * This function disables fogging, so primitives drawn afterwards will not be
473
532
  * blended with any previously set fog color.
533
+ *
534
+ * Deprecated: 1.16: Use #CoglSnippet shader api for fog
474
535
  */
536
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_snippet_API)
475
537
  void
476
538
  cogl_disable_fog (void);
477
539
 
@@ -483,7 +545,10 @@ cogl_disable_fog (void);
483
545
  *
484
546
  * Clears all the auxiliary buffers identified in the @buffers mask, and if
485
547
  * that includes the color buffer then the specified @color is used.
548
+ *
549
+ * Deprecated: 1.16: Use cogl_framebuffer_clear() api instead
486
550
  */
551
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_clear)
487
552
  void
488
553
  cogl_clear (const CoglColor *color,
489
554
  unsigned long buffers);
@@ -498,7 +563,11 @@ cogl_clear (const CoglColor *color,
498
563
  * cogl_rectangle() or vertices drawn using cogl_vertex_buffer_draw().
499
564
  *
500
565
  * Since: 1.0
566
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
567
+ * #CoglPipeline argument so this stack of
568
+ * #CoglMaterial<!-- -->s shouldn't be used.
501
569
  */
570
+ COGL_DEPRECATED_IN_1_16
502
571
  void
503
572
  cogl_set_source (void *material);
504
573
 
@@ -517,7 +586,11 @@ cogl_set_source (void *material);
517
586
  * Return value: The current source material.
518
587
  *
519
588
  * Since: 1.6
589
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
590
+ * #CoglPipeline argument so this stack of
591
+ * #CoglMaterial<!-- -->s shouldn't be used.
520
592
  */
593
+ COGL_DEPRECATED_IN_1_16
521
594
  void *
522
595
  cogl_get_source (void);
523
596
 
@@ -530,7 +603,11 @@ cogl_get_source (void);
530
603
  * process later primitives as defined by cogl_set_source().
531
604
  *
532
605
  * Since: 1.6
606
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
607
+ * #CoglPipeline argument so this stack of
608
+ * #CoglMaterial<!-- -->s shouldn't be used.
533
609
  */
610
+ COGL_DEPRECATED_IN_1_16
534
611
  void
535
612
  cogl_push_source (void *material);
536
613
 
@@ -542,7 +619,11 @@ cogl_push_source (void *material);
542
619
  * later primitives as defined by cogl_set_source().
543
620
  *
544
621
  * Since: 1.6
622
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
623
+ * #CoglPipeline argument so this stack of
624
+ * #CoglMaterial<!-- -->s shouldn't be used.
545
625
  */
626
+ COGL_DEPRECATED_IN_1_16
546
627
  void
547
628
  cogl_pop_source (void);
548
629
 
@@ -562,7 +643,11 @@ cogl_pop_source (void);
562
643
  * if you already have the color components.
563
644
  *
564
645
  * Since: 1.0
646
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
647
+ * #CoglPipeline argument so this stack of
648
+ * #CoglMaterial<!-- -->s shouldn't be used.
565
649
  */
650
+ COGL_DEPRECATED_IN_1_16
566
651
  void
567
652
  cogl_set_source_color (const CoglColor *color);
568
653
 
@@ -581,7 +666,11 @@ cogl_set_source_color (const CoglColor *color);
581
666
  * between 0 and 255.
582
667
  *
583
668
  * Since: 1.0
669
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
670
+ * #CoglPipeline argument so this stack of
671
+ * #CoglMaterial<!-- -->s shouldn't be used.
584
672
  */
673
+ COGL_DEPRECATED_IN_1_16
585
674
  void
586
675
  cogl_set_source_color4ub (uint8_t red,
587
676
  uint8_t green,
@@ -604,7 +693,11 @@ cogl_set_source_color4ub (uint8_t red,
604
693
  * range, they will be clamped.
605
694
  *
606
695
  * Since: 1.0
696
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
697
+ * #CoglPipeline argument so this stack of
698
+ * #CoglMaterial<!-- -->s shouldn't be used.
607
699
  */
700
+ COGL_DEPRECATED_IN_1_16
608
701
  void
609
702
  cogl_set_source_color4f (float red,
610
703
  float green,
@@ -630,7 +723,11 @@ cogl_set_source_color4f (float red,
630
723
  * </programlisting>
631
724
  *
632
725
  * Since: 1.0
726
+ * Deprecated: 1.16: Latest drawing apis all take an explicit
727
+ * #CoglPipeline argument so this stack of
728
+ * #CoglMaterial<!-- -->s shouldn't be used.
633
729
  */
730
+ COGL_DEPRECATED_IN_1_16
634
731
  void
635
732
  cogl_set_source_texture (CoglTexture *texture);
636
733
 
@@ -644,8 +741,6 @@ cogl_set_source_texture (CoglTexture *texture);
644
741
  * intersected with the previous region.
645
742
  */
646
743
 
647
- #ifndef COGL_DISABLE_DEPRECATED
648
-
649
744
  /**
650
745
  * cogl_clip_push_window_rect:
651
746
  * @x_offset: left edge of the clip rectangle in window coordinates
@@ -662,15 +757,14 @@ cogl_set_source_texture (CoglTexture *texture);
662
757
  * The rectangle is intersected with the current clip region. To undo
663
758
  * the effect of this function, call cogl_clip_pop().
664
759
  *
665
- * Deprecated: 1.2: Use cogl_clip_push_window_rectangle() instead
760
+ * Deprecated: 1.16: Use cogl_framebuffer_push_scissor_clip() instead
666
761
  */
762
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_push_scissor_clip)
667
763
  void
668
764
  cogl_clip_push_window_rect (float x_offset,
669
765
  float y_offset,
670
766
  float width,
671
- float height) G_GNUC_DEPRECATED;
672
-
673
- #endif /* COGL_DISABLE_DEPRECATED */
767
+ float height);
674
768
 
675
769
  /**
676
770
  * cogl_clip_push_window_rectangle:
@@ -689,15 +783,15 @@ cogl_clip_push_window_rect (float x_offset,
689
783
  * the effect of this function, call cogl_clip_pop().
690
784
  *
691
785
  * Since: 1.2
786
+ * Deprecated: 1.16: Use cogl_framebuffer_push_scissor_clip() instead
692
787
  */
788
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_push_scissor_clip)
693
789
  void
694
790
  cogl_clip_push_window_rectangle (int x_offset,
695
791
  int y_offset,
696
792
  int width,
697
793
  int height);
698
794
 
699
- #ifndef COGL_DISABLE_DEPRECATED
700
-
701
795
  /**
702
796
  * cogl_clip_push:
703
797
  * @x_offset: left edge of the clip rectangle
@@ -714,19 +808,18 @@ cogl_clip_push_window_rectangle (int x_offset,
714
808
  * The rectangle is intersected with the current clip region. To undo
715
809
  * the effect of this function, call cogl_clip_pop().
716
810
  *
717
- * Deprecated: 1.2: The x, y, width, height arguments are inconsistent
811
+ * Deprecated: 1.16: The x, y, width, height arguments are inconsistent
718
812
  * with other API that specify rectangles in model space, and when used
719
813
  * with a coordinate space that puts the origin at the center and y+
720
- * extending up, it's awkward to use. Please use cogl_clip_push_rectangle()
721
- * instead
814
+ * extending up, it's awkward to use. Please use
815
+ * cogl_framebuffer_push_rectangle_clip()
722
816
  */
817
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_push_rectangle_clip)
723
818
  void
724
819
  cogl_clip_push (float x_offset,
725
820
  float y_offset,
726
821
  float width,
727
- float height) G_GNUC_DEPRECATED;
728
-
729
- #endif /* COGL_DISABLE_DEPRECATED */
822
+ float height);
730
823
 
731
824
  /**
732
825
  * cogl_clip_push_rectangle:
@@ -745,27 +838,16 @@ cogl_clip_push (float x_offset,
745
838
  * the effect of this function, call cogl_clip_pop().
746
839
  *
747
840
  * Since: 1.2
841
+ * Deprecated: 1.16: Use cogl_framebuffer_push_rectangle_clip()
842
+ * instead
748
843
  */
844
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_push_rectangle_clip)
749
845
  void
750
846
  cogl_clip_push_rectangle (float x0,
751
847
  float y0,
752
848
  float x1,
753
849
  float y1);
754
850
 
755
- /**
756
- * cogl_clip_push_from_path_preserve:
757
- *
758
- * Sets a new clipping area using the current path. The current path
759
- * is then cleared. The clipping area is intersected with the previous
760
- * clipping area. To restore the previous clipping area, call
761
- * cogl_clip_pop().
762
- *
763
- * Since: 1.0
764
- */
765
- void
766
- cogl_clip_push_from_path_preserve (void);
767
-
768
- #ifdef COGL_ENABLE_EXPERIMENTAL_2_0_API
769
851
  /**
770
852
  * cogl_clip_push_primitive:
771
853
  * @primitive: A #CoglPrimitive describing a flat 2D shape
@@ -773,11 +855,9 @@ cogl_clip_push_from_path_preserve (void);
773
855
  * bounds
774
856
  * @bounds_y1: y coordinate for the top-left corner of the primitives
775
857
  * bounds
776
- * @bounds_x2: x coordinate for the top-left corner of the primitives
858
+ * @bounds_x2: x coordinate for the bottom-right corner of the primitives
777
859
  * bounds
778
- * @bounds_y2: x coordinate for the bottom-right corner of the
779
- * primitives bounds.
780
- * @bounds_x1: y coordinate for the bottom-right corner of the
860
+ * @bounds_y2: y coordinate for the bottom-right corner of the
781
861
  * primitives bounds.
782
862
  *
783
863
  * Sets a new clipping area using a 2D shaped described with a
@@ -795,26 +875,29 @@ cogl_clip_push_from_path_preserve (void);
795
875
  *
796
876
  * Since: 1.10
797
877
  * Stability: unstable
878
+ * Deprecated: 1.16: Use cogl_framebuffer_push_primitive_clip()
879
+ * instead
798
880
  */
881
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_push_primitive_clip)
799
882
  void
800
883
  cogl_clip_push_primitive (CoglPrimitive *primitive,
801
884
  float bounds_x1,
802
885
  float bounds_y1,
803
886
  float bounds_x2,
804
887
  float bounds_y2);
805
- #endif
806
888
 
807
889
  /**
808
890
  * cogl_clip_pop:
809
891
  *
810
892
  * Reverts the clipping region to the state before the last call to
811
893
  * cogl_clip_push().
894
+ *
895
+ * Deprecated: 1.16: Use cogl_framebuffer_pop_clip() instead
812
896
  */
897
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_pop_clip)
813
898
  void
814
899
  cogl_clip_pop (void);
815
900
 
816
- #ifndef COGL_DISABLE_DEPRECATED
817
-
818
901
  /**
819
902
  * cogl_clip_ensure:
820
903
  *
@@ -827,8 +910,9 @@ cogl_clip_pop (void);
827
910
  *
828
911
  * Since: 1.0
829
912
  */
913
+ COGL_DEPRECATED
830
914
  void
831
- cogl_clip_ensure (void) G_GNUC_DEPRECATED;
915
+ cogl_clip_ensure (void);
832
916
 
833
917
  /**
834
918
  * cogl_clip_stack_save:
@@ -847,8 +931,9 @@ cogl_clip_ensure (void) G_GNUC_DEPRECATED;
847
931
  *
848
932
  * Since: 0.8.2
849
933
  */
934
+ COGL_DEPRECATED
850
935
  void
851
- cogl_clip_stack_save (void) G_GNUC_DEPRECATED;
936
+ cogl_clip_stack_save (void);
852
937
 
853
938
  /**
854
939
  * cogl_clip_stack_restore:
@@ -864,10 +949,9 @@ cogl_clip_stack_save (void) G_GNUC_DEPRECATED;
864
949
  *
865
950
  * Since: 0.8.2
866
951
  */
952
+ COGL_DEPRECATED
867
953
  void
868
- cogl_clip_stack_restore (void) G_GNUC_DEPRECATED;
869
-
870
- #endif /* COGL_DISABLE_DEPRECATED */
954
+ cogl_clip_stack_restore (void);
871
955
 
872
956
  /**
873
957
  * cogl_set_framebuffer:
@@ -878,7 +962,11 @@ cogl_clip_stack_restore (void) G_GNUC_DEPRECATED;
878
962
  * or in the future it may be an onscreen framebuffers too.
879
963
  *
880
964
  * Since: 1.2
965
+ * Deprecated: 1.16: The latest drawing apis take explicit
966
+ * #CoglFramebuffer arguments so this stack of
967
+ * framebuffers shouldn't be used anymore.
881
968
  */
969
+ COGL_DEPRECATED_IN_1_16
882
970
  void
883
971
  cogl_set_framebuffer (CoglFramebuffer *buffer);
884
972
 
@@ -959,7 +1047,11 @@ cogl_set_framebuffer (CoglFramebuffer *buffer);
959
1047
  * The previous framebuffer can be restored by calling cogl_pop_framebuffer()
960
1048
  *
961
1049
  * Since: 1.2
1050
+ * Deprecated: 1.16: The latest drawing apis take explicit
1051
+ * #CoglFramebuffer arguments so this stack of
1052
+ * framebuffers shouldn't be used anymore.
962
1053
  */
1054
+ COGL_DEPRECATED_IN_1_16
963
1055
  void
964
1056
  cogl_push_framebuffer (CoglFramebuffer *buffer);
965
1057
 
@@ -970,12 +1062,14 @@ cogl_push_framebuffer (CoglFramebuffer *buffer);
970
1062
  * All subsequent drawing will be redirected to this framebuffer.
971
1063
  *
972
1064
  * Since: 1.2
1065
+ * Deprecated: 1.16: The latest drawing apis take explicit
1066
+ * #CoglFramebuffer arguments so this stack of
1067
+ * framebuffers shouldn't be used anymore.
973
1068
  */
1069
+ COGL_DEPRECATED_IN_1_16
974
1070
  void
975
1071
  cogl_pop_framebuffer (void);
976
1072
 
977
- #ifndef COGL_DISABLE_DEPRECATED
978
-
979
1073
  /**
980
1074
  * cogl_set_draw_buffer:
981
1075
  * @target: A #CoglBufferTarget that specifies what kind of framebuffer you
@@ -988,34 +1082,40 @@ cogl_pop_framebuffer (void);
988
1082
  * cogl_offscreen_new_to_texture () or you can revert to your original
989
1083
  * on screen window buffer.
990
1084
  *
991
- * Deprecated: 1.2: The target argument was redundant since we could look at
992
- * the type of CoglHandle given instead.
1085
+ * Deprecated: 1.16: The latest drawing apis take explicit
1086
+ * #CoglFramebuffer arguments so this stack of
1087
+ * framebuffers shouldn't be used anymore.
993
1088
  */
1089
+ COGL_DEPRECATED_IN_1_16
994
1090
  void
995
1091
  cogl_set_draw_buffer (CoglBufferTarget target,
996
- CoglHandle offscreen) G_GNUC_DEPRECATED;
1092
+ CoglHandle offscreen);
997
1093
 
998
1094
  /**
999
1095
  * cogl_push_draw_buffer:
1000
1096
  *
1001
1097
  * Save cogl_set_draw_buffer() state.
1002
1098
  *
1003
- * Deprecated: 1.2: The draw buffer API was replaced with a framebuffer API
1099
+ * Deprecated: 1.16: The latest drawing apis take explicit
1100
+ * #CoglFramebuffer arguments so this stack of
1101
+ * framebuffers shouldn't be used anymore.
1004
1102
  */
1103
+ COGL_DEPRECATED_IN_1_16
1005
1104
  void
1006
- cogl_push_draw_buffer (void) COGL_GNUC_DEPRECATED;
1105
+ cogl_push_draw_buffer (void);
1007
1106
 
1008
1107
  /**
1009
1108
  * cogl_pop_draw_buffer:
1010
1109
  *
1011
1110
  * Restore cogl_set_draw_buffer() state.
1012
1111
  *
1013
- * Deprecated: 1.2: The draw buffer API was replaced with a framebuffer API
1112
+ * Deprecated: 1.16: The latest drawing apis take explicit
1113
+ * #CoglFramebuffer arguments so this stack of
1114
+ * framebuffers shouldn't be used anymore.
1014
1115
  */
1116
+ COGL_DEPRECATED_IN_1_16
1015
1117
  void
1016
- cogl_pop_draw_buffer (void) COGL_GNUC_DEPRECATED;
1017
-
1018
- #endif /* COGL_DISABLE_DEPRECATED */
1118
+ cogl_pop_draw_buffer (void);
1019
1119
 
1020
1120
  /**
1021
1121
  * cogl_read_pixels:
@@ -1038,7 +1138,10 @@ cogl_pop_draw_buffer (void) COGL_GNUC_DEPRECATED;
1038
1138
  * read the pixel values without any conversion you should either
1039
1139
  * specify a format that doesn't use an alpha channel or use one of
1040
1140
  * the formats ending in PRE.
1141
+ *
1142
+ * Deprecated: 1.16: Use cogl_framebuffer_read_pixels() instead
1041
1143
  */
1144
+ COGL_DEPRECATED_IN_1_16_FOR (cogl_framebuffer_read_pixels)
1042
1145
  void
1043
1146
  cogl_read_pixels (int x,
1044
1147
  int y,
@@ -1149,7 +1252,9 @@ cogl_flush (void);
1149
1252
  * OpenGL.
1150
1253
  *
1151
1254
  * Since: 1.0
1255
+ * Deprecated: 1.16: Use the #CoglGLES2Context api instead
1152
1256
  */
1257
+ COGL_DEPRECATED_IN_1_16_FOR (CoglGLES2Context_API)
1153
1258
  void
1154
1259
  cogl_begin_gl (void);
1155
1260
 
@@ -1160,7 +1265,9 @@ cogl_begin_gl (void);
1160
1265
  * code using raw OpenGL. Please refer to cogl_begin_gl() for full details.
1161
1266
  *
1162
1267
  * Since: 1.0
1268
+ * Deprecated: 1.16: Use the #CoglGLES2Context api instead
1163
1269
  */
1270
+ COGL_DEPRECATED_IN_1_16_FOR (CoglGLES2Context_API)
1164
1271
  void
1165
1272
  cogl_end_gl (void);
1166
1273