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.
- checksums.yaml +7 -0
- data/Rakefile +4 -4
- data/lib/clutter.rb +1 -1
- data/sample/easing-modes.rb +1 -3
- data/test/clutter-test-utils.rb +6 -1
- data/test/run-test.rb +2 -0
- data/test/test-clutter-color.rb +8 -0
- data/vendor/local/bin/libclutter-1.0-0.dll +0 -0
- data/vendor/local/bin/libcogl-15.dll +0 -0
- data/vendor/local/bin/libcogl-pango-15.dll +0 -0
- data/vendor/local/bin/libjson-glib-1.0-0.dll +0 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-actor.h +16 -4
- data/vendor/local/include/clutter-1.0/clutter/clutter-backend.h +3 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-canvas.h +5 -4
- data/vendor/local/include/clutter-1.0/clutter/clutter-device-manager.h +3 -1
- data/vendor/local/include/clutter-1.0/clutter/clutter-event.h +19 -6
- data/vendor/local/include/clutter-1.0/clutter/clutter-flow-layout.h +5 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-input-device.h +2 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-layout-manager.h +1 -2
- data/vendor/local/include/clutter-1.0/clutter/clutter-macros.h +14 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-offscreen-effect.h +6 -0
- data/vendor/local/include/clutter-1.0/clutter/clutter-text.h +9 -6
- data/vendor/local/include/clutter-1.0/clutter/clutter-types.h +5 -1
- data/vendor/local/include/clutter-1.0/clutter/clutter-version.h +14 -4
- data/vendor/local/include/cogl/cogl-pango/cogl-pango.h +38 -4
- data/vendor/local/include/cogl/cogl-path/cogl-path-enum-types.h +20 -0
- data/vendor/local/include/cogl/{cogl/cogl-path.h → cogl-path/cogl-path-types.h} +6 -27
- data/vendor/local/include/cogl/cogl-path/cogl-path.h +58 -0
- data/vendor/local/include/cogl/{cogl/cogl-path-functions.h → cogl-path/cogl1-path-functions.h} +30 -0
- data/vendor/local/include/cogl/{cogl/cogl2-path.h → cogl-path/cogl2-path-functions.h} +87 -70
- data/vendor/local/include/cogl/cogl/cogl-atlas-texture.h +230 -0
- data/vendor/local/include/cogl/cogl/cogl-attribute-buffer.h +4 -3
- data/vendor/local/include/cogl/cogl/cogl-attribute.h +40 -34
- data/vendor/local/include/cogl/cogl/cogl-bitmap.h +14 -12
- data/vendor/local/include/cogl/cogl/cogl-buffer.h +4 -2
- data/vendor/local/include/cogl/cogl/cogl-clip-state.h +0 -13
- data/vendor/local/include/cogl/cogl/cogl-clutter.h +2 -0
- data/vendor/local/include/cogl/cogl/cogl-color.h +48 -7
- data/vendor/local/include/cogl/cogl/cogl-context.h +28 -4
- data/vendor/local/include/cogl/cogl/cogl-defines.h +3 -2
- data/vendor/local/include/cogl/cogl/cogl-depth-state.h +1 -1
- data/vendor/local/include/cogl/cogl/cogl-display.h +26 -3
- data/vendor/local/include/cogl/cogl/cogl-enum-types.h +0 -4
- data/vendor/local/include/cogl/cogl/cogl-error.h +4 -0
- data/vendor/local/include/cogl/cogl/cogl-fence.h +136 -0
- data/vendor/local/include/cogl/cogl/cogl-frame-info.h +2 -2
- data/vendor/local/include/cogl/cogl/cogl-framebuffer.h +32 -84
- data/vendor/local/include/cogl/cogl/cogl-glib-source.h +34 -3
- data/vendor/local/include/cogl/cogl/cogl-index-buffer.h +2 -0
- data/vendor/local/include/cogl/cogl/cogl-macros.h +253 -0
- data/vendor/local/include/cogl/cogl/cogl-material-compat.h +114 -6
- data/vendor/local/include/cogl/cogl/cogl-matrix-stack.h +1 -1
- data/vendor/local/include/cogl/cogl/cogl-matrix.h +8 -4
- data/vendor/local/include/cogl/cogl/cogl-meta-texture.h +8 -8
- data/vendor/local/include/cogl/cogl/cogl-object.h +6 -2
- data/vendor/local/include/cogl/cogl/cogl-offscreen.h +41 -6
- data/vendor/local/include/cogl/cogl/cogl-onscreen-template.h +1 -1
- data/vendor/local/include/cogl/cogl/cogl-onscreen.h +265 -45
- data/vendor/local/include/cogl/cogl/cogl-output.h +1 -1
- data/vendor/local/include/cogl/cogl/cogl-pipeline-layer-state.h +2 -2
- data/vendor/local/include/cogl/cogl/cogl-pipeline-state.h +57 -8
- data/vendor/local/include/cogl/cogl/cogl-pipeline.h +6 -5
- data/vendor/local/include/cogl/cogl/cogl-pixel-buffer.h +6 -2
- data/vendor/local/include/cogl/cogl/cogl-poll.h +44 -24
- data/vendor/local/include/cogl/cogl/cogl-primitive-texture.h +3 -3
- data/vendor/local/include/cogl/cogl/cogl-primitive.h +86 -29
- data/vendor/local/include/cogl/cogl/cogl-quaternion.h +7 -7
- data/vendor/local/include/cogl/cogl/cogl-renderer.h +7 -2
- data/vendor/local/include/cogl/cogl/cogl-shader.h +72 -29
- data/vendor/local/include/cogl/cogl/cogl-snippet.h +76 -11
- data/vendor/local/include/cogl/cogl/cogl-sub-texture.h +2 -2
- data/vendor/local/include/cogl/cogl/cogl-texture-2d-gl.h +5 -5
- data/vendor/local/include/cogl/cogl/cogl-texture-2d-sliced.h +167 -1
- data/vendor/local/include/cogl/cogl/cogl-texture-2d.h +36 -9
- data/vendor/local/include/cogl/cogl/cogl-texture-3d.h +6 -6
- data/vendor/local/include/cogl/cogl/cogl-texture-rectangle.h +13 -12
- data/vendor/local/include/cogl/cogl/cogl-texture.h +18 -21
- data/vendor/local/include/cogl/cogl/cogl-types.h +2 -1
- data/vendor/local/include/cogl/cogl/cogl-version.h +150 -3
- data/vendor/local/include/cogl/cogl/cogl-vertex-buffer.h +44 -9
- data/vendor/local/include/cogl/cogl/cogl-win32-renderer.h +19 -0
- data/vendor/local/include/cogl/cogl/cogl.h +13 -9
- data/vendor/local/include/cogl/cogl/cogl1-context.h +174 -67
- data/vendor/local/include/json-glib-1.0/json-glib/json-version.h +3 -3
- data/vendor/local/lib/girepository-1.0/Clutter-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Cogl-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/CoglPango-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Json-1.0.typelib +0 -0
- data/vendor/local/lib/libclutter-1.0.dll.a +0 -0
- data/vendor/local/lib/libclutter-1.0.la +5 -5
- data/vendor/local/lib/libcogl-pango.dll.a +0 -0
- data/vendor/local/lib/libcogl-pango.la +6 -6
- data/vendor/local/lib/libcogl.dll.a +0 -0
- data/vendor/local/lib/libcogl.la +5 -5
- data/vendor/local/lib/libjson-glib-1.0.dll.a +0 -0
- data/vendor/local/lib/libjson-glib-1.0.la +2 -2
- data/vendor/local/lib/pkgconfig/cally-1.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/clutter-1.0.pc +2 -2
- data/vendor/local/lib/pkgconfig/clutter-win32-1.0.pc +2 -2
- data/vendor/local/lib/pkgconfig/cogl-1.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/cogl-gl-1.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/cogl-pango-1.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/cogl-pango-2.0-experimental.pc +1 -1
- data/vendor/local/lib/pkgconfig/json-glib-1.0.pc +1 -1
- data/vendor/local/share/gir-1.0/Cally-1.0.gir +74 -74
- data/vendor/local/share/gir-1.0/Clutter-1.0.gir +6548 -6241
- data/vendor/local/share/gir-1.0/Cogl-1.0.gir +1906 -1405
- data/vendor/local/share/gir-1.0/CoglPango-1.0.gir +69 -46
- data/vendor/local/share/gir-1.0/Json-1.0.gir +694 -694
- data/vendor/local/share/gtk-doc/html/cally/CallyActor.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyClone.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyGroup.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyRectangle.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyRoot.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyStage.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyText.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyTexture.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/CallyUtil.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/cally-General-API.html +12 -15
- data/vendor/local/share/gtk-doc/html/cally/callyannotationglossary.html +12 -12
- data/vendor/local/share/gtk-doc/html/cally/callybase.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/callyobjecthierarchy.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/callyobjectindex.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/callyobjects.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/ch01.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/ch02.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/clutter-overview.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/index.html +4 -4
- data/vendor/local/share/gtk-doc/html/cally/index.sgml +1 -1
- data/vendor/local/share/gtk-doc/html/cally/ix01.html +23 -26
- data/vendor/local/share/gtk-doc/html/cally/ix02.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/ix03.html +23 -26
- data/vendor/local/share/gtk-doc/html/cally/ix04.html +10 -13
- data/vendor/local/share/gtk-doc/html/cally/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/license.html +9 -9
- data/vendor/local/share/gtk-doc/html/cally/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/style.css +71 -16
- data/vendor/local/share/gtk-doc/html/cally/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cally/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAction.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterActor.html +196 -87
- data/vendor/local/share/gtk-doc/html/clutter/ClutterActorMeta.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAlignConstraint.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAlpha.html +28 -31
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimatable.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/ClutterAnimator.html +37 -40
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBackend.html +51 -31
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviour.html +28 -31
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourDepth.html +19 -22
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourEllipse.html +15 -18
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourOpacity.html +19 -22
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourPath.html +21 -24
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourRotate.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBehaviourScale.html +21 -24
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBinLayout.html +51 -54
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBindConstraint.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBlurEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBox.html +22 -25
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBoxLayout.html +31 -34
- data/vendor/local/share/gtk-doc/html/clutter/ClutterBrightnessContrastEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterCairoTexture.html +59 -62
- data/vendor/local/share/gtk-doc/html/clutter/ClutterCanvas.html +49 -24
- data/vendor/local/share/gtk-doc/html/clutter/ClutterChildMeta.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterClickAction.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/ClutterClone.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/ClutterColorizeEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterConstraint.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/ClutterContainer.html +24 -27
- data/vendor/local/share/gtk-doc/html/clutter/ClutterContent.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDeformEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDesaturateEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDeviceManager.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDragAction.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/ClutterDropAction.html +13 -18
- data/vendor/local/share/gtk-doc/html/clutter/ClutterEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterFixedLayout.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterFlowLayout.html +107 -16
- data/vendor/local/share/gtk-doc/html/clutter/ClutterGestureAction.html +33 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterGridLayout.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterGroup.html +16 -19
- data/vendor/local/share/gtk-doc/html/clutter/ClutterImage.html +26 -41
- data/vendor/local/share/gtk-doc/html/clutter/ClutterInputDevice.html +44 -17
- data/vendor/local/share/gtk-doc/html/clutter/ClutterKeyframeTransition.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutManager.html +15 -18
- data/vendor/local/share/gtk-doc/html/clutter/ClutterLayoutMeta.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterListModel.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterMedia.html +39 -42
- data/vendor/local/share/gtk-doc/html/clutter/ClutterModel.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterModelIter.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterOffscreenEffect.html +60 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPageTurnEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPaintNode.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPanAction.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPath.html +16 -19
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPathConstraint.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterPropertyTransition.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterRectangle.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterRotateAction.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScore.html +32 -35
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScript.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScriptable.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/ClutterScrollActor.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterSettings.html +16 -19
- data/vendor/local/share/gtk-doc/html/clutter/ClutterShaderEffect.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterSnapConstraint.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterStage.html +731 -686
- data/vendor/local/share/gtk-doc/html/clutter/ClutterState.html +39 -42
- data/vendor/local/share/gtk-doc/html/clutter/ClutterSwipeAction.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTableLayout.html +27 -30
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTapAction.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterText.html +95 -27
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTextBuffer.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTexture.html +47 -50
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTimeline.html +20 -23
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTransition.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/ClutterTransitionGroup.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/ClutterZoomAction.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/annotation-glossary.html +59 -59
- data/vendor/local/share/gtk-doc/html/clutter/building-clutter.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch01.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch02.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch03.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch04.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch05.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch06.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch07.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch08.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch09.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch10.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch11.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ch12.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Base-geometric-types.html +33 -24
- data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterGLXTexturePixmap.html +34 -35
- data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterWaylandSurface.html +18 -21
- data/vendor/local/share/gtk-doc/html/clutter/clutter-ClutterX11TexturePixmap.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Colors.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/clutter-EGL-Specific-Support.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Events.html +96 -37
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Features.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/clutter-GDK-Specific-Support.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/clutter-General.html +32 -35
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Implicit-Animations.html +60 -63
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Intel-CE3100-CE4100-Specific-Support.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Key-Bindings.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Paint-Nodes.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Shaders.html +33 -36
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Stage-Manager.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Unit-conversion.html +14 -17
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Utilities.html +23 -26
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Value-intervals.html +20 -15
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Versioning-Macros.html +31 -22
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-compositor-specific-support.html +13 -16
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Wayland-specific-support.html +259 -0
- data/vendor/local/share/gtk-doc/html/clutter/clutter-Win32-Specific-Support.html +12 -15
- data/vendor/local/share/gtk-doc/html/clutter/clutter-X11-Specific-Support.html +19 -22
- data/vendor/local/share/gtk-doc/html/clutter/clutter-overview.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutter.devhelp2 +48 -25
- data/vendor/local/share/gtk-doc/html/clutter/clutteranimation.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutterbackends.html +12 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutterbase.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutterglossary.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutterobjecthierarchy.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutterobjectindex.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/clutterobjects.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/cluttertools.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/deprecated.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/go01.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/index.html +7 -4
- data/vendor/local/share/gtk-doc/html/clutter/index.sgml +55 -26
- data/vendor/local/share/gtk-doc/html/clutter/iterating-paths.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/ix01.html +155 -70
- data/vendor/local/share/gtk-doc/html/clutter/ix02.html +89 -45
- data/vendor/local/share/gtk-doc/html/clutter/ix03.html +39 -34
- data/vendor/local/share/gtk-doc/html/clutter/ix04.html +37 -40
- data/vendor/local/share/gtk-doc/html/clutter/ix05.html +33 -36
- data/vendor/local/share/gtk-doc/html/clutter/ix06.html +40 -43
- data/vendor/local/share/gtk-doc/html/clutter/ix07.html +39 -42
- data/vendor/local/share/gtk-doc/html/clutter/ix08.html +35 -38
- data/vendor/local/share/gtk-doc/html/clutter/ix09.html +33 -36
- data/vendor/local/share/gtk-doc/html/clutter/ix10.html +25 -28
- data/vendor/local/share/gtk-doc/html/clutter/ix11.html +31 -34
- data/vendor/local/share/gtk-doc/html/clutter/ix12.html +56 -47
- data/vendor/local/share/gtk-doc/html/clutter/ix13.html +49 -52
- data/vendor/local/share/gtk-doc/html/clutter/ix14.html +36 -24
- data/vendor/local/share/gtk-doc/html/clutter/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/license.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterAnimation.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterBehaviour.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterEffect.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/migrating-ClutterPath.html +10 -10
- data/vendor/local/share/gtk-doc/html/clutter/migration.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/pt09.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/running-clutter.html +9 -9
- data/vendor/local/share/gtk-doc/html/clutter/style.css +71 -16
- data/vendor/local/share/gtk-doc/html/clutter/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/clutter/using-cairo.html +9 -9
- data/vendor/local/share/gtk-doc/html/json-glib/index.html +1 -1
- data/vendor/local/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html +3 -3
- data/vendor/local/share/locale/an/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ky/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/json-glib-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/clutter-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/cogl.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/json-glib-1.0.mo +0 -0
- metadata +39 -51
- data/vendor/local/bin/libcogl-12.dll +0 -0
- data/vendor/local/bin/libcogl-pango-12.dll +0 -0
- data/vendor/local/bin/libglut-0.dll +0 -0
- data/vendor/local/include/GL/freeglut.h +0 -22
- data/vendor/local/include/GL/freeglut_ext.h +0 -239
- data/vendor/local/include/GL/freeglut_std.h +0 -636
- data/vendor/local/include/GL/glut.h +0 -21
- data/vendor/local/include/cogl/cogl/cogl2-compatibility.h +0 -55
- data/vendor/local/lib/libglut.a +0 -0
- data/vendor/local/lib/libglut.dll.a +0 -0
- data/vendor/local/lib/libglut.la +0 -41
- data/vendor/local/share/license/freeglut/AUTHORS +0 -39
- data/vendor/local/share/license/freeglut/COPYING +0 -27
- data/vendor/local/share/locale/tg/LC_MESSAGES/clutter-1.0.mo +0 -0
@@ -116,8 +116,8 @@ float cogl_frame_info_get_refresh_rate (CoglFrameInfo *info);
|
|
116
116
|
*
|
117
117
|
* Gets the #CoglOutput that the swapped frame was presented to.
|
118
118
|
*
|
119
|
-
* Return value: The #CoglOutput that the frame was
|
120
|
-
*
|
119
|
+
* Return value: (transfer none): The #CoglOutput that the frame was
|
120
|
+
* presented to, or %NULL if this could not be determined.
|
121
121
|
* Since: 1.14
|
122
122
|
* Stability: unstable
|
123
123
|
*/
|
@@ -32,11 +32,10 @@
|
|
32
32
|
#include <windows.h>
|
33
33
|
#endif /* COGL_HAS_WIN32_SUPPORT */
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
#endif
|
35
|
+
/* We forward declare the CoglFramebuffer type here to avoid some circular
|
36
|
+
* dependency issues with the following headers.
|
37
|
+
*/
|
38
|
+
typedef struct _CoglFramebuffer CoglFramebuffer;
|
40
39
|
|
41
40
|
#include <cogl/cogl-pipeline.h>
|
42
41
|
#include <cogl/cogl-indices.h>
|
@@ -71,7 +70,7 @@ COGL_BEGIN_DECLS
|
|
71
70
|
*
|
72
71
|
* If you want to create a new framebuffer then you should start by
|
73
72
|
* looking at the #CoglOnscreen and #CoglOffscreen constructor
|
74
|
-
* functions, such as
|
73
|
+
* functions, such as cogl_offscreen_new_with_texture() or
|
75
74
|
* cogl_onscreen_new(). The #CoglFramebuffer interface deals with
|
76
75
|
* all aspects that are common between those two types of framebuffer.
|
77
76
|
*
|
@@ -87,8 +86,6 @@ COGL_BEGIN_DECLS
|
|
87
86
|
* configuration.
|
88
87
|
*/
|
89
88
|
|
90
|
-
typedef struct _CoglFramebuffer CoglFramebuffer;
|
91
|
-
|
92
89
|
#ifdef COGL_ENABLE_EXPERIMENTAL_API
|
93
90
|
|
94
91
|
#define COGL_FRAMEBUFFER(X) ((CoglFramebuffer *)(X))
|
@@ -595,23 +592,6 @@ cogl_framebuffer_push_rectangle_clip (CoglFramebuffer *framebuffer,
|
|
595
592
|
float x_2,
|
596
593
|
float y_2);
|
597
594
|
|
598
|
-
/**
|
599
|
-
* cogl_framebuffer_push_path_clip:
|
600
|
-
* @framebuffer: A #CoglFramebuffer pointer
|
601
|
-
* @path: The path to clip with.
|
602
|
-
*
|
603
|
-
* Sets a new clipping area using the silhouette of the specified,
|
604
|
-
* filled @path. The clipping area is intersected with the previous
|
605
|
-
* clipping area. To restore the previous clipping area, call
|
606
|
-
* cogl_framebuffer_pop_clip().
|
607
|
-
*
|
608
|
-
* Since: 1.0
|
609
|
-
* Stability: unstable
|
610
|
-
*/
|
611
|
-
void
|
612
|
-
cogl_framebuffer_push_path_clip (CoglFramebuffer *framebuffer,
|
613
|
-
CoglPath *path);
|
614
|
-
|
615
595
|
/**
|
616
596
|
* cogl_framebuffer_push_primitive_clip:
|
617
597
|
* @framebuffer: A #CoglFramebuffer pointer
|
@@ -815,7 +795,7 @@ cogl_framebuffer_set_color_mask (CoglFramebuffer *framebuffer,
|
|
815
795
|
*
|
816
796
|
* Queries the common #CoglPixelFormat of all color buffers attached
|
817
797
|
* to this framebuffer. For an offscreen framebuffer created with
|
818
|
-
*
|
798
|
+
* cogl_offscreen_new_with_texture() this will correspond to the format
|
819
799
|
* of the texture.
|
820
800
|
*
|
821
801
|
* Since: 1.8
|
@@ -1035,8 +1015,8 @@ cogl_framebuffer_resolve_samples_region (CoglFramebuffer *framebuffer,
|
|
1035
1015
|
* instantiated within. This is the #CoglContext that was passed to
|
1036
1016
|
* cogl_onscreen_new() for example.
|
1037
1017
|
*
|
1038
|
-
* Return value: The #CoglContext that the given
|
1039
|
-
* instantiated within.
|
1018
|
+
* Return value: (transfer none): The #CoglContext that the given
|
1019
|
+
* @framebuffer was instantiated within.
|
1040
1020
|
* Since: 1.8
|
1041
1021
|
* Stability: unstable
|
1042
1022
|
*/
|
@@ -1111,7 +1091,10 @@ cogl_framebuffer_clear4f (CoglFramebuffer *framebuffer,
|
|
1111
1091
|
*
|
1112
1092
|
* Stability: unstable
|
1113
1093
|
* Since: 1.10
|
1094
|
+
* Deprecated: 1.16: Use #CoglPrimitive<!-- -->s and
|
1095
|
+
* cogl_primitive_draw() instead
|
1114
1096
|
*/
|
1097
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_draw)
|
1115
1098
|
void
|
1116
1099
|
cogl_framebuffer_draw_primitive (CoglFramebuffer *framebuffer,
|
1117
1100
|
CoglPipeline *pipeline,
|
@@ -1146,7 +1129,10 @@ cogl_framebuffer_draw_primitive (CoglFramebuffer *framebuffer,
|
|
1146
1129
|
*
|
1147
1130
|
* Stability: unstable
|
1148
1131
|
* Since: 1.10
|
1132
|
+
* Deprecated: 1.16: Use #CoglPrimitive<!-- -->s and
|
1133
|
+
* cogl_primitive_draw() instead
|
1149
1134
|
*/
|
1135
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_draw)
|
1150
1136
|
void
|
1151
1137
|
cogl_framebuffer_vdraw_attributes (CoglFramebuffer *framebuffer,
|
1152
1138
|
CoglPipeline *pipeline,
|
@@ -1190,7 +1176,10 @@ cogl_framebuffer_vdraw_attributes (CoglFramebuffer *framebuffer,
|
|
1190
1176
|
*
|
1191
1177
|
* Stability: unstable
|
1192
1178
|
* Since: 1.10
|
1179
|
+
* Deprecated: 1.16: Use #CoglPrimitive<!-- -->s and
|
1180
|
+
* cogl_primitive_draw() instead
|
1193
1181
|
*/
|
1182
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_draw)
|
1194
1183
|
void
|
1195
1184
|
cogl_framebuffer_draw_attributes (CoglFramebuffer *framebuffer,
|
1196
1185
|
CoglPipeline *pipeline,
|
@@ -1253,7 +1242,10 @@ cogl_framebuffer_draw_attributes (CoglFramebuffer *framebuffer,
|
|
1253
1242
|
*
|
1254
1243
|
* Stability: unstable
|
1255
1244
|
* Since: 1.10
|
1245
|
+
* Deprecated: 1.16: Use #CoglPrimitive<!-- -->s and
|
1246
|
+
* cogl_primitive_draw() instead
|
1256
1247
|
*/
|
1248
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_draw)
|
1257
1249
|
void
|
1258
1250
|
cogl_framebuffer_vdraw_indexed_attributes (CoglFramebuffer *framebuffer,
|
1259
1251
|
CoglPipeline *pipeline,
|
@@ -1318,7 +1310,10 @@ cogl_framebuffer_vdraw_indexed_attributes (CoglFramebuffer *framebuffer,
|
|
1318
1310
|
*
|
1319
1311
|
* Stability: unstable
|
1320
1312
|
* Since: 1.10
|
1313
|
+
* Deprecated: 1.16: Use #CoglPrimitive<!-- -->s and
|
1314
|
+
* cogl_primitive_draw() instead
|
1321
1315
|
*/
|
1316
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_draw)
|
1322
1317
|
void
|
1323
1318
|
cogl_framebuffer_draw_indexed_attributes (CoglFramebuffer *framebuffer,
|
1324
1319
|
CoglPipeline *pipeline,
|
@@ -1387,11 +1382,9 @@ cogl_framebuffer_draw_rectangle (CoglFramebuffer *framebuffer,
|
|
1387
1382
|
* This is a high level drawing api that can handle any kind of
|
1388
1383
|
* #CoglMetaTexture texture such as #CoglTexture2DSliced textures
|
1389
1384
|
* which may internally be comprised of multiple low-level textures.
|
1390
|
-
* This is unlike low-level drawing apis such as
|
1391
|
-
*
|
1392
|
-
*
|
1393
|
-
* texture types that are directly supported by GPUs such as
|
1394
|
-
* #CoglTexture2D.
|
1385
|
+
* This is unlike low-level drawing apis such as cogl_primitive_draw()
|
1386
|
+
* which only support low level texture types that are directly
|
1387
|
+
* supported by GPUs such as #CoglTexture2D.
|
1395
1388
|
*
|
1396
1389
|
* <note>The given texture coordinates will only be used for the first
|
1397
1390
|
* texture layer of the pipeline and if your pipeline has more than
|
@@ -1454,10 +1447,8 @@ cogl_framebuffer_draw_textured_rectangle (CoglFramebuffer *framebuffer,
|
|
1454
1447
|
* #CoglMetaTexture texture for the first layer such as
|
1455
1448
|
* #CoglTexture2DSliced textures which may internally be comprised of
|
1456
1449
|
* multiple low-level textures. This is unlike low-level drawing apis
|
1457
|
-
* such as
|
1458
|
-
*
|
1459
|
-
* texture types that are directly supported by GPUs such as
|
1460
|
-
* #CoglTexture2D.
|
1450
|
+
* such as cogl_primitive_draw() which only support low level texture
|
1451
|
+
* types that are directly supported by GPUs such as #CoglTexture2D.
|
1461
1452
|
*
|
1462
1453
|
* <note>This api can not currently handle multiple high-level meta
|
1463
1454
|
* texture layers. The first layer may be a high level meta texture
|
@@ -1562,11 +1553,9 @@ cogl_framebuffer_draw_rectangles (CoglFramebuffer *framebuffer,
|
|
1562
1553
|
* This is a high level drawing api that can handle any kind of
|
1563
1554
|
* #CoglMetaTexture texture such as #CoglTexture2DSliced textures
|
1564
1555
|
* which may internally be comprised of multiple low-level textures.
|
1565
|
-
* This is unlike low-level drawing apis such as
|
1566
|
-
*
|
1567
|
-
*
|
1568
|
-
* texture types that are directly supported by GPUs such as
|
1569
|
-
* #CoglTexture2D.
|
1556
|
+
* This is unlike low-level drawing apis such as cogl_primitive_draw()
|
1557
|
+
* which only support low level texture types that are directly
|
1558
|
+
* supported by GPUs such as #CoglTexture2D.
|
1570
1559
|
*
|
1571
1560
|
* The top left corner of the first rectangle is positioned at
|
1572
1561
|
* (coordinates[0], coordinates[1]) and the bottom right corner is
|
@@ -1602,47 +1591,6 @@ cogl_framebuffer_draw_textured_rectangles (CoglFramebuffer *framebuffer,
|
|
1602
1591
|
const float *coordinates,
|
1603
1592
|
unsigned int n_rectangles);
|
1604
1593
|
|
1605
|
-
/**
|
1606
|
-
* cogl_framebuffer_fill_path:
|
1607
|
-
* @framebuffer: A #CoglFramebuffer
|
1608
|
-
* @pipeline: A #CoglPipeline to render with
|
1609
|
-
* @path: The #CoglPath to fill
|
1610
|
-
*
|
1611
|
-
* Fills the interior of the path using the fragment operations
|
1612
|
-
* defined by the pipeline.
|
1613
|
-
*
|
1614
|
-
* The interior of the shape is determined using the fill rule of the
|
1615
|
-
* path. See %CoglPathFillRule for details.
|
1616
|
-
*
|
1617
|
-
* <note>The result of referencing sliced textures in your current
|
1618
|
-
* pipeline when filling a path are undefined. You should pass
|
1619
|
-
* the %COGL_TEXTURE_NO_SLICING flag when loading any texture you will
|
1620
|
-
* use while filling a path.</note>
|
1621
|
-
*
|
1622
|
-
* Since: 2.0
|
1623
|
-
*/
|
1624
|
-
void
|
1625
|
-
cogl_framebuffer_fill_path (CoglFramebuffer *framebuffer,
|
1626
|
-
CoglPipeline *pipeline,
|
1627
|
-
CoglPath *path);
|
1628
|
-
|
1629
|
-
/**
|
1630
|
-
* cogl_framebuffer_stroke_path:
|
1631
|
-
* @framebuffer: A #CoglFramebuffer
|
1632
|
-
* @pipeline: A #CoglPipeline to render with
|
1633
|
-
* @path: The #CoglPath to stroke
|
1634
|
-
*
|
1635
|
-
* Strokes the edge of the path using the fragment operations defined
|
1636
|
-
* by the pipeline. The stroke line will have a width of 1 pixel
|
1637
|
-
* regardless of the current transformation matrix.
|
1638
|
-
*
|
1639
|
-
* Since: 2.0
|
1640
|
-
*/
|
1641
|
-
void
|
1642
|
-
cogl_framebuffer_stroke_path (CoglFramebuffer *framebuffer,
|
1643
|
-
CoglPipeline *pipeline,
|
1644
|
-
CoglPath *path);
|
1645
|
-
|
1646
1594
|
/* XXX: Should we take an n_buffers + buffer id array instead of using
|
1647
1595
|
* the CoglBufferBits type which doesn't seem future proof? */
|
1648
1596
|
/**
|
@@ -1783,7 +1731,7 @@ cogl_framebuffer_read_pixels (CoglFramebuffer *framebuffer,
|
|
1783
1731
|
* Gets the current #CoglFramebuffer as set using
|
1784
1732
|
* cogl_push_framebuffer()
|
1785
1733
|
*
|
1786
|
-
* Return value: The current #CoglFramebuffer
|
1734
|
+
* Return value: (transfer none): The current #CoglFramebuffer
|
1787
1735
|
* Stability: unstable
|
1788
1736
|
* Since: 1.8
|
1789
1737
|
*/
|
@@ -40,11 +40,21 @@ G_BEGIN_DECLS
|
|
40
40
|
*
|
41
41
|
* Creates a #GSource which handles Cogl's internal system event
|
42
42
|
* processing. This can be used as a convenience instead of
|
43
|
-
*
|
44
|
-
* are already using the GLib main loop. After this
|
45
|
-
* #GSource should be attached to the main loop using
|
43
|
+
* cogl_poll_renderer_get_info() and cogl_poll_renderer_dispatch() in
|
44
|
+
* applications that are already using the GLib main loop. After this
|
45
|
+
* is called the #GSource should be attached to the main loop using
|
46
46
|
* g_source_attach().
|
47
47
|
*
|
48
|
+
* Applications that manually connect to a #CoglRenderer before they
|
49
|
+
* create a #CoglContext should instead use
|
50
|
+
* cogl_glib_renderer_source_new() so that events may be dispatched
|
51
|
+
* before a context has been created. In that case you don't need to
|
52
|
+
* use this api in addition later, it is simply enough to use
|
53
|
+
* cogl_glib_renderer_source_new() instead.
|
54
|
+
*
|
55
|
+
* <note>This api is actually just a thin convenience wrapper around
|
56
|
+
* cogl_glib_renderer_source_new()</note>
|
57
|
+
*
|
48
58
|
* Return value: a new #GSource
|
49
59
|
*
|
50
60
|
* Stability: unstable
|
@@ -54,6 +64,27 @@ GSource *
|
|
54
64
|
cogl_glib_source_new (CoglContext *context,
|
55
65
|
int priority);
|
56
66
|
|
67
|
+
/**
|
68
|
+
* cogl_glib_renderer_source_new:
|
69
|
+
* @renderer: A #CoglRenderer
|
70
|
+
* @priority: The priority of the #GSource
|
71
|
+
*
|
72
|
+
* Creates a #GSource which handles Cogl's internal system event
|
73
|
+
* processing. This can be used as a convenience instead of
|
74
|
+
* cogl_poll_renderer_get_info() and cogl_poll_renderer_dispatch() in
|
75
|
+
* applications that are already using the GLib main loop. After this
|
76
|
+
* is called the #GSource should be attached to the main loop using
|
77
|
+
* g_source_attach().
|
78
|
+
*
|
79
|
+
* Return value: a new #GSource
|
80
|
+
*
|
81
|
+
* Stability: unstable
|
82
|
+
* Since: 1.16
|
83
|
+
*/
|
84
|
+
GSource *
|
85
|
+
cogl_glib_renderer_source_new (CoglRenderer *renderer,
|
86
|
+
int priority);
|
87
|
+
|
57
88
|
G_END_DECLS
|
58
89
|
|
59
90
|
#endif /* __COGL_GSOURCE_H__ */
|
@@ -57,6 +57,8 @@ typedef struct _CoglIndexBuffer CoglIndexBuffer;
|
|
57
57
|
* cogl_buffer_set_data() or by mapping it into the application's
|
58
58
|
* address space using cogl_buffer_map().
|
59
59
|
*
|
60
|
+
* Return value: (transfer full): A newly allocated #CoglIndexBuffer
|
61
|
+
*
|
60
62
|
* Since: 1.4
|
61
63
|
* Stability: Unstable
|
62
64
|
*/
|
@@ -0,0 +1,253 @@
|
|
1
|
+
/*
|
2
|
+
* Cogl.
|
3
|
+
*
|
4
|
+
* An OpenGL based 'interactive canvas' library.
|
5
|
+
*
|
6
|
+
* Copyright (C) 2012 Intel Corporation
|
7
|
+
*
|
8
|
+
* This library is free software; you can redistribute it and/or
|
9
|
+
* modify it under the terms of the GNU Lesser General Public
|
10
|
+
* License as published by the Free Software Foundation; either
|
11
|
+
* version 2 of the License, or (at your option) any later version.
|
12
|
+
*
|
13
|
+
* This library is distributed in the hope that it will be useful,
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
16
|
+
* Lesser General Public License for more details.
|
17
|
+
*
|
18
|
+
* You should have received a copy of the GNU Lesser General Public
|
19
|
+
* License along with this library. If not, see
|
20
|
+
* <http://www.gnu.org/licenses/>.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#if !defined(__COGL_H_INSIDE__) && !defined(COGL_COMPILATION)
|
24
|
+
#error "Only <cogl/cogl.h> can be included directly."
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#ifndef __COGL_MACROS_H__
|
28
|
+
#define __COGL_MACROS_H__
|
29
|
+
|
30
|
+
#include <cogl/cogl-version.h>
|
31
|
+
|
32
|
+
/* These macros are used to mark deprecated functions, and thus have
|
33
|
+
* to be exposed in a public header.
|
34
|
+
*
|
35
|
+
* They are only intended for internal use and should not be used by
|
36
|
+
* other projects.
|
37
|
+
*/
|
38
|
+
#if defined(COGL_DISABLE_DEPRECATION_WARNINGS) || defined(COGL_COMPILATION)
|
39
|
+
|
40
|
+
#define COGL_DEPRECATED
|
41
|
+
#define COGL_DEPRECATED_FOR(f)
|
42
|
+
#define COGL_UNAVAILABLE(maj,min)
|
43
|
+
|
44
|
+
#else /* COGL_DISABLE_DEPRECATION_WARNINGS */
|
45
|
+
|
46
|
+
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
|
47
|
+
#define COGL_DEPRECATED __attribute__((__deprecated__))
|
48
|
+
#elif defined(_MSC_VER) && (_MSC_VER >= 1300)
|
49
|
+
#define COGL_DEPRECATED __declspec(deprecated)
|
50
|
+
#else
|
51
|
+
#define COGL_DEPRECATED
|
52
|
+
#endif
|
53
|
+
|
54
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
|
55
|
+
#define COGL_DEPRECATED_FOR(f) __attribute__((__deprecated__("Use '" #f "' instead")))
|
56
|
+
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
|
57
|
+
#define COGL_DEPRECATED_FOR(f) __declspec(deprecated("is deprecated. Use '" #f "' instead"))
|
58
|
+
#else
|
59
|
+
#define COGL_DEPRECATED_FOR(f) G_DEPRECATED
|
60
|
+
#endif
|
61
|
+
|
62
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
|
63
|
+
#define COGL_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available before " #maj "." #min)))
|
64
|
+
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
|
65
|
+
#define COGL_UNAVAILABLE(maj,min) __declspec(deprecated("is not available before " #maj "." #min))
|
66
|
+
#else
|
67
|
+
#define COGL_UNAVAILABLE(maj,min)
|
68
|
+
#endif
|
69
|
+
|
70
|
+
#endif /* COGL_DISABLE_DEPRECATION_WARNINGS */
|
71
|
+
|
72
|
+
/**
|
73
|
+
* COGL_VERSION_MIN_REQUIRED:
|
74
|
+
*
|
75
|
+
* A macro that should be defined by the user prior to including the
|
76
|
+
* cogl.h header.
|
77
|
+
*
|
78
|
+
* The definition should be one of the predefined Cogl version macros,
|
79
|
+
* such as: %COGL_VERSION_1_8, %COGL_VERSION_1_10, ...
|
80
|
+
*
|
81
|
+
* This macro defines the lower bound for the Cogl API to be used.
|
82
|
+
*
|
83
|
+
* If a function has been deprecated in a newer version of Cogl, it
|
84
|
+
* is possible to use this symbol to avoid the compiler warnings without
|
85
|
+
* disabling warnings for every deprecated function.
|
86
|
+
*
|
87
|
+
* Since: 1.16
|
88
|
+
*/
|
89
|
+
#ifndef COGL_VERSION_MIN_REQUIRED
|
90
|
+
# define COGL_VERSION_MIN_REQUIRED (COGL_VERSION_CURRENT_STABLE)
|
91
|
+
#endif
|
92
|
+
|
93
|
+
/**
|
94
|
+
* COGL_VERSION_MAX_ALLOWED:
|
95
|
+
*
|
96
|
+
* A macro that should be define by the user prior to including the
|
97
|
+
* cogl.h header.
|
98
|
+
*
|
99
|
+
* The definition should be one of the predefined Cogl version macros,
|
100
|
+
* such as: %COGL_VERSION_1_0, %COGL_VERSION_1_2, ...
|
101
|
+
*
|
102
|
+
* This macro defines the upper bound for the Cogl API to be used.
|
103
|
+
*
|
104
|
+
* If a function has been introduced in a newer version of Cogl, it
|
105
|
+
* is possible to use this symbol to get compiler warnings when trying
|
106
|
+
* to use that function.
|
107
|
+
*
|
108
|
+
* Since: 1.16
|
109
|
+
*/
|
110
|
+
#ifndef COGL_VERSION_MAX_ALLOWED
|
111
|
+
# if COGL_VERSION_MIN_REQUIRED > COGL_VERSION_PREVIOUS_STABLE
|
112
|
+
# define COGL_VERSION_MAX_ALLOWED COGL_VERSION_MIN_REQUIRED
|
113
|
+
# else
|
114
|
+
# define COGL_VERSION_MAX_ALLOWED COGL_VERSION_CURRENT_STABLE
|
115
|
+
# endif
|
116
|
+
#endif
|
117
|
+
|
118
|
+
/* sanity checks */
|
119
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_MIN_REQUIRED
|
120
|
+
# error "COGL_VERSION_MAX_ALLOWED must be >= COGL_VERSION_MIN_REQUIRED"
|
121
|
+
#endif
|
122
|
+
#if COGL_VERSION_MIN_REQUIRED < COGL_VERSION_1_0
|
123
|
+
# error "COGL_VERSION_MIN_REQUIRED must be >= COGL_VERSION_1_0"
|
124
|
+
#endif
|
125
|
+
|
126
|
+
/* XXX: Every new stable minor release should add a set of macros here */
|
127
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_0
|
128
|
+
# define COGL_DEPRECATED_IN_1_0 COGL_DEPRECATED
|
129
|
+
# define COGL_DEPRECATED_IN_1_0_FOR(f) COGL_DEPRECATED_FOR(f)
|
130
|
+
#else
|
131
|
+
# define COGL_DEPRECATED_IN_1_0
|
132
|
+
# define COGL_DEPRECATED_IN_1_0_FOR(f)
|
133
|
+
#endif
|
134
|
+
|
135
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_0
|
136
|
+
# define COGL_AVAILABLE_IN_1_0 COGL_UNAVAILABLE(1, 0)
|
137
|
+
#else
|
138
|
+
# define COGL_AVAILABLE_IN_1_0
|
139
|
+
#endif
|
140
|
+
|
141
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_2
|
142
|
+
# define COGL_DEPRECATED_IN_1_2 COGL_DEPRECATED
|
143
|
+
# define COGL_DEPRECATED_IN_1_2_FOR(f) COGL_DEPRECATED_FOR(f)
|
144
|
+
#else
|
145
|
+
# define COGL_DEPRECATED_IN_1_2
|
146
|
+
# define COGL_DEPRECATED_IN_1_2_FOR(f)
|
147
|
+
#endif
|
148
|
+
|
149
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_2
|
150
|
+
# define COGL_AVAILABLE_IN_1_2 COGL_UNAVAILABLE(1, 2)
|
151
|
+
#else
|
152
|
+
# define COGL_AVAILABLE_IN_1_2
|
153
|
+
#endif
|
154
|
+
|
155
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_4
|
156
|
+
# define COGL_DEPRECATED_IN_1_4 COGL_DEPRECATED
|
157
|
+
# define COGL_DEPRECATED_IN_1_4_FOR(f) COGL_DEPRECATED_FOR(f)
|
158
|
+
#else
|
159
|
+
# define COGL_DEPRECATED_IN_1_4
|
160
|
+
# define COGL_DEPRECATED_IN_1_4_FOR(f)
|
161
|
+
#endif
|
162
|
+
|
163
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_4
|
164
|
+
# define COGL_AVAILABLE_IN_1_4 COGL_UNAVAILABLE(1, 4)
|
165
|
+
#else
|
166
|
+
# define COGL_AVAILABLE_IN_1_4
|
167
|
+
#endif
|
168
|
+
|
169
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_6
|
170
|
+
# define COGL_DEPRECATED_IN_1_6 COGL_DEPRECATED
|
171
|
+
# define COGL_DEPRECATED_IN_1_6_FOR(f) COGL_DEPRECATED_FOR(f)
|
172
|
+
#else
|
173
|
+
# define COGL_DEPRECATED_IN_1_6
|
174
|
+
# define COGL_DEPRECATED_IN_1_6_FOR(f)
|
175
|
+
#endif
|
176
|
+
|
177
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_6
|
178
|
+
# define COGL_AVAILABLE_IN_1_6 COGL_UNAVAILABLE(1, 6)
|
179
|
+
#else
|
180
|
+
# define COGL_AVAILABLE_IN_1_6
|
181
|
+
#endif
|
182
|
+
|
183
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_8
|
184
|
+
# define COGL_DEPRECATED_IN_1_8 COGL_DEPRECATED
|
185
|
+
# define COGL_DEPRECATED_IN_1_8_FOR(f) COGL_DEPRECATED_FOR(f)
|
186
|
+
#else
|
187
|
+
# define COGL_DEPRECATED_IN_1_8
|
188
|
+
# define COGL_DEPRECATED_IN_1_8_FOR(f)
|
189
|
+
#endif
|
190
|
+
|
191
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_8
|
192
|
+
# define COGL_AVAILABLE_IN_1_8 COGL_UNAVAILABLE(1, 8)
|
193
|
+
#else
|
194
|
+
# define COGL_AVAILABLE_IN_1_8
|
195
|
+
#endif
|
196
|
+
|
197
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_10
|
198
|
+
# define COGL_DEPRECATED_IN_1_10 COGL_DEPRECATED
|
199
|
+
# define COGL_DEPRECATED_IN_1_10_FOR(f) COGL_DEPRECATED_FOR(f)
|
200
|
+
#else
|
201
|
+
# define COGL_DEPRECATED_IN_1_10
|
202
|
+
# define COGL_DEPRECATED_IN_1_10_FOR(f)
|
203
|
+
#endif
|
204
|
+
|
205
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_10
|
206
|
+
# define COGL_AVAILABLE_IN_1_10 COGL_UNAVAILABLE(1, 10)
|
207
|
+
#else
|
208
|
+
# define COGL_AVAILABLE_IN_1_10
|
209
|
+
#endif
|
210
|
+
|
211
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_12
|
212
|
+
# define COGL_DEPRECATED_IN_1_12 COGL_DEPRECATED
|
213
|
+
# define COGL_DEPRECATED_IN_1_12_FOR(f) COGL_DEPRECATED_FOR(f)
|
214
|
+
#else
|
215
|
+
# define COGL_DEPRECATED_IN_1_12
|
216
|
+
# define COGL_DEPRECATED_IN_1_12_FOR(f)
|
217
|
+
#endif
|
218
|
+
|
219
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_12
|
220
|
+
# define COGL_AVAILABLE_IN_1_12 COGL_UNAVAILABLE(1, 12)
|
221
|
+
#else
|
222
|
+
# define COGL_AVAILABLE_IN_1_12
|
223
|
+
#endif
|
224
|
+
|
225
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_14
|
226
|
+
# define COGL_DEPRECATED_IN_1_14 COGL_DEPRECATED
|
227
|
+
# define COGL_DEPRECATED_IN_1_14_FOR(f) COGL_DEPRECATED_FOR(f)
|
228
|
+
#else
|
229
|
+
# define COGL_DEPRECATED_IN_1_14
|
230
|
+
# define COGL_DEPRECATED_IN_1_14_FOR(f)
|
231
|
+
#endif
|
232
|
+
|
233
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_14
|
234
|
+
# define COGL_AVAILABLE_IN_1_14 COGL_UNAVAILABLE(1, 14)
|
235
|
+
#else
|
236
|
+
# define COGL_AVAILABLE_IN_1_14
|
237
|
+
#endif
|
238
|
+
|
239
|
+
#if COGL_VERSION_MIN_REQUIRED >= COGL_VERSION_1_16
|
240
|
+
# define COGL_DEPRECATED_IN_1_16 COGL_DEPRECATED
|
241
|
+
# define COGL_DEPRECATED_IN_1_16_FOR(f) COGL_DEPRECATED_FOR(f)
|
242
|
+
#else
|
243
|
+
# define COGL_DEPRECATED_IN_1_16
|
244
|
+
# define COGL_DEPRECATED_IN_1_16_FOR(f)
|
245
|
+
#endif
|
246
|
+
|
247
|
+
#if COGL_VERSION_MAX_ALLOWED < COGL_VERSION_1_16
|
248
|
+
# define COGL_AVAILABLE_IN_1_16 COGL_UNAVAILABLE(1, 16)
|
249
|
+
#else
|
250
|
+
# define COGL_AVAILABLE_IN_1_16
|
251
|
+
#endif
|
252
|
+
|
253
|
+
#endif /* __COGL_MACROS_H__ */
|