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
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: eb90b5a14ab223f5ee89bbc8e3221b89fac9f346
|
4
|
+
data.tar.gz: ae90423140e03f72801a806d9b464754917d4257
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bde397c3dcbcd59d3f0f80df14da7f1a13e60fc9fb8a2a0557fc784cb9eeb833a1606c5ded6cd4e20bc5f43c10b91396832236891721de36bca89025d5bf83a4
|
7
|
+
data.tar.gz: fb9120341566de8e6478ec0848102330da519c8b47ad571b9825b7877c01dce1501efb2cb01f6694f397336e931ad7ab8d5a44f5d01b4e6d3a25a5772690133c
|
data/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
#
|
3
|
-
# Copyright (C) 2012 Ruby-GNOME2 Project Team
|
3
|
+
# Copyright (C) 2012-2013 Ruby-GNOME2 Project Team
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -79,7 +79,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
79
79
|
:name => "cogl",
|
80
80
|
:download_site => :gnome,
|
81
81
|
:label => "Cogl",
|
82
|
-
:version => "1.
|
82
|
+
:version => "1.16.0",
|
83
83
|
:compression_method => "xz",
|
84
84
|
:windows => {
|
85
85
|
:configure_args => [
|
@@ -92,7 +92,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
92
92
|
:name => "json-glib",
|
93
93
|
:download_site => :gnome,
|
94
94
|
:label => "JSON-GLib",
|
95
|
-
:version => "0.16.
|
95
|
+
:version => "0.16.2",
|
96
96
|
:compression_method => "xz",
|
97
97
|
:windows => {
|
98
98
|
:configure_args => [
|
@@ -104,7 +104,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
104
104
|
:name => "clutter",
|
105
105
|
:download_site => :gnome,
|
106
106
|
:label => "Clutter",
|
107
|
-
:version => "1.
|
107
|
+
:version => "1.16.2",
|
108
108
|
:compression_method => "xz",
|
109
109
|
:windows => {
|
110
110
|
:configure_args => [
|
data/lib/clutter.rb
CHANGED
@@ -82,7 +82,7 @@ module Clutter
|
|
82
82
|
1 + @init_arguments.size,
|
83
83
|
[$0] + @init_arguments,
|
84
84
|
]
|
85
|
-
error, argc, argv = init.invoke(arguments)
|
85
|
+
error, argc, argv = init.invoke(:arguments => arguments)
|
86
86
|
@init_arguments.replace(argv)
|
87
87
|
if error.to_i <= 0
|
88
88
|
raise InitError, "failed to initialize Clutter: #{error.name}"
|
data/sample/easing-modes.rb
CHANGED
data/test/clutter-test-utils.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2012 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (C) 2012-2013 Ruby-GNOME2 Project Team
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -18,4 +18,9 @@ require "test-unit"
|
|
18
18
|
require "test/unit/notify"
|
19
19
|
|
20
20
|
module ClutterTestUtils
|
21
|
+
def omit_if_clutter_color_hash_expect_arguments
|
22
|
+
unless Clutter::Color.method(:hash).parameters.empty?
|
23
|
+
omit("This test can't be run on this environment.")
|
24
|
+
end
|
25
|
+
end
|
21
26
|
end
|
data/test/run-test.rb
CHANGED
@@ -20,11 +20,13 @@ ruby_gnome2_base = File.join(File.dirname(__FILE__), "..", "..")
|
|
20
20
|
ruby_gnome2_base = File.expand_path(ruby_gnome2_base)
|
21
21
|
|
22
22
|
glib_base = File.join(ruby_gnome2_base, "glib2")
|
23
|
+
cairo_gobject_base = File.join(ruby_gnome2_base, "cairo-gobject")
|
23
24
|
gobject_introspection_base = File.join(ruby_gnome2_base, "gobject-introspection")
|
24
25
|
clutter_base = File.join(ruby_gnome2_base, "clutter")
|
25
26
|
|
26
27
|
modules = [
|
27
28
|
[glib_base, "glib2"],
|
29
|
+
[cairo_gobject_base, "cairo-gobject"],
|
28
30
|
[gobject_introspection_base, "gobject-introspection"],
|
29
31
|
[clutter_base, "clutter"],
|
30
32
|
]
|
data/test/test-clutter-color.rb
CHANGED
@@ -15,27 +15,35 @@
|
|
15
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
16
|
|
17
17
|
class ClutterColorTest < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
18
20
|
def test_rgb
|
21
|
+
omit_if_clutter_color_hash_expect_arguments
|
19
22
|
assert_equal("#ff0000ff", Clutter::Color.rgb(255, 0, 0).to_s)
|
20
23
|
end
|
21
24
|
|
22
25
|
def test_rgba
|
26
|
+
omit_if_clutter_color_hash_expect_arguments
|
23
27
|
assert_equal("#ff00007f", Clutter::Color.rgb(255, 0, 0, 127).to_s)
|
24
28
|
end
|
25
29
|
|
26
30
|
def test_hls
|
31
|
+
omit_if_clutter_color_hash_expect_arguments
|
27
32
|
assert_equal("#20dfdfff", Clutter::Color.hls(180, 0.5, 0.75).to_s)
|
28
33
|
end
|
29
34
|
|
30
35
|
def test_hlsa
|
36
|
+
omit_if_clutter_color_hash_expect_arguments
|
31
37
|
assert_equal("#20dfdf7f", Clutter::Color.hls(180, 0.5, 0.75, 127).to_s)
|
32
38
|
end
|
33
39
|
|
34
40
|
def test_pixel
|
41
|
+
omit_if_clutter_color_hash_expect_arguments
|
35
42
|
assert_equal("#20dfdf7f", Clutter::Color.pixel(0x20dfdf7f).to_s)
|
36
43
|
end
|
37
44
|
|
38
45
|
def test_parse
|
46
|
+
omit_if_clutter_color_hash_expect_arguments
|
39
47
|
assert_equal("#20dfdf7f",
|
40
48
|
Clutter::Color.parse("rgba(32, 223, 223, 0.5)").to_s)
|
41
49
|
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -129,9 +129,13 @@ struct _ClutterActor
|
|
129
129
|
* clutter_actor_hide(). This virtual function is deprecated and it
|
130
130
|
* should not be overridden.
|
131
131
|
* @realize: virtual function, used to allocate resources for the actor;
|
132
|
-
* it should chain up to the parent's implementation
|
132
|
+
* it should chain up to the parent's implementation. This virtual
|
133
|
+
* function is deprecated and should not be overridden in newly
|
134
|
+
* written code.
|
133
135
|
* @unrealize: virtual function, used to deallocate resources allocated
|
134
|
-
* in ::realize; it should chain up to the parent's implementation
|
136
|
+
* in ::realize; it should chain up to the parent's implementation. This
|
137
|
+
* function is deprecated and should not be overridden in newly
|
138
|
+
* written code.
|
135
139
|
* @map: virtual function for containers and composite actors, to
|
136
140
|
* map their children; it must chain up to the parent's implementation.
|
137
141
|
* Overriding this function is optional.
|
@@ -147,12 +151,13 @@ struct _ClutterActor
|
|
147
151
|
* clutter_actor_get_preferred_height()
|
148
152
|
* @allocate: virtual function, used when settings the coordinates of an
|
149
153
|
* actor; it is used by clutter_actor_allocate(); it must chain up to
|
150
|
-
* the parent's implementation
|
154
|
+
* the parent's implementation, or call clutter_actor_set_allocation()
|
151
155
|
* @apply_transform: virtual function, used when applying the transformations
|
152
156
|
* to an actor before painting it or when transforming coordinates or
|
153
157
|
* the allocation; it must chain up to the parent's implementation
|
154
158
|
* @parent_set: signal class handler for the #ClutterActor::parent-set
|
155
|
-
* @destroy: signal class handler for #ClutterActor::destroy
|
159
|
+
* @destroy: signal class handler for #ClutterActor::destroy. It must
|
160
|
+
* chain up to the parent's implementation
|
156
161
|
* @pick: virtual function, used to draw an outline of the actor with
|
157
162
|
* the given color
|
158
163
|
* @queue_redraw: class handler for #ClutterActor::queue-redraw
|
@@ -730,6 +735,13 @@ void clutter_actor_remove_transition
|
|
730
735
|
CLUTTER_AVAILABLE_IN_1_10
|
731
736
|
void clutter_actor_remove_all_transitions (ClutterActor *self);
|
732
737
|
|
738
|
+
|
739
|
+
/* Experimental API */
|
740
|
+
#ifdef CLUTTER_ENABLE_EXPERIMENTAL_API
|
741
|
+
CLUTTER_AVAILABLE_IN_1_16
|
742
|
+
gboolean clutter_actor_has_mapped_clones (ClutterActor *self);
|
743
|
+
#endif
|
744
|
+
|
733
745
|
G_END_DECLS
|
734
746
|
|
735
747
|
#endif /* __CLUTTER_ACTOR_H__ */
|
@@ -59,6 +59,9 @@ GType clutter_backend_get_type (void) G_GNUC_CONST;
|
|
59
59
|
|
60
60
|
ClutterBackend *clutter_get_default_backend (void);
|
61
61
|
|
62
|
+
CLUTTER_AVAILABLE_IN_1_16
|
63
|
+
void clutter_set_windowing_backend (const char *backend_type);
|
64
|
+
|
62
65
|
gdouble clutter_backend_get_resolution (ClutterBackend *backend);
|
63
66
|
|
64
67
|
void clutter_backend_set_font_options (ClutterBackend *backend,
|
@@ -89,11 +89,12 @@ CLUTTER_AVAILABLE_IN_1_10
|
|
89
89
|
GType clutter_canvas_get_type (void) G_GNUC_CONST;
|
90
90
|
|
91
91
|
CLUTTER_AVAILABLE_IN_1_10
|
92
|
-
ClutterContent * clutter_canvas_new
|
92
|
+
ClutterContent * clutter_canvas_new (void);
|
93
93
|
CLUTTER_AVAILABLE_IN_1_10
|
94
|
-
|
95
|
-
|
96
|
-
|
94
|
+
gboolean clutter_canvas_set_size (ClutterCanvas *canvas,
|
95
|
+
int width,
|
96
|
+
int height);
|
97
|
+
|
97
98
|
|
98
99
|
G_END_DECLS
|
99
100
|
|
@@ -81,9 +81,11 @@ struct _ClutterDeviceManagerClass
|
|
81
81
|
ClutterInputDevice *device);
|
82
82
|
void (* remove_device) (ClutterDeviceManager *manager,
|
83
83
|
ClutterInputDevice *device);
|
84
|
+
void (* select_stage_events) (ClutterDeviceManager *manager,
|
85
|
+
ClutterStage *stage);
|
84
86
|
|
85
87
|
/* padding */
|
86
|
-
gpointer _padding[
|
88
|
+
gpointer _padding[7];
|
87
89
|
};
|
88
90
|
|
89
91
|
|
@@ -146,7 +146,8 @@ struct _ClutterAnyEvent
|
|
146
146
|
* @keyval: raw key value
|
147
147
|
* @hardware_keycode: raw hardware key value
|
148
148
|
* @unicode_value: Unicode representation
|
149
|
-
* @device:
|
149
|
+
* @device: the device that originated the event. If you want the physical
|
150
|
+
* device the event originated from, use clutter_event_get_source_device()
|
150
151
|
*
|
151
152
|
* Key event
|
152
153
|
*
|
@@ -181,7 +182,8 @@ struct _ClutterKeyEvent
|
|
181
182
|
* @click_count: number of button presses within the default time
|
182
183
|
* and radius
|
183
184
|
* @axes: reserved for future use
|
184
|
-
* @device:
|
185
|
+
* @device: the device that originated the event. If you want the physical
|
186
|
+
* device the event originated from, use clutter_event_get_source_device()
|
185
187
|
*
|
186
188
|
* Button event.
|
187
189
|
*
|
@@ -218,7 +220,8 @@ struct _ClutterButtonEvent
|
|
218
220
|
* @x: event X coordinate
|
219
221
|
* @y: event Y coordinate
|
220
222
|
* @related: actor related to the crossing
|
221
|
-
* @device:
|
223
|
+
* @device: the device that originated the event. If you want the physical
|
224
|
+
* device the event originated from, use clutter_event_get_source_device()
|
222
225
|
*
|
223
226
|
* Event for the movement of the pointer across different actors
|
224
227
|
*
|
@@ -249,7 +252,8 @@ struct _ClutterCrossingEvent
|
|
249
252
|
* @y: event Y coordinate
|
250
253
|
* @modifier_state: button modifiers
|
251
254
|
* @axes: reserved for future use
|
252
|
-
* @device:
|
255
|
+
* @device: the device that originated the event. If you want the physical
|
256
|
+
* device the event originated from, use clutter_event_get_source_device()
|
253
257
|
*
|
254
258
|
* Event for the pointer motion
|
255
259
|
*
|
@@ -282,7 +286,8 @@ struct _ClutterMotionEvent
|
|
282
286
|
* @direction: direction of the scrolling
|
283
287
|
* @modifier_state: button modifiers
|
284
288
|
* @axes: reserved for future use
|
285
|
-
* @device:
|
289
|
+
* @device: the device that originated the event. If you want the physical
|
290
|
+
* device the event originated from, use clutter_event_get_source_device()
|
286
291
|
*
|
287
292
|
* Scroll wheel (or similar device) event
|
288
293
|
*
|
@@ -344,7 +349,8 @@ struct _ClutterStageStateEvent
|
|
344
349
|
* of modifier keys (e.g. Control, Shift, and Alt) and the pointer
|
345
350
|
* buttons. See #ClutterModifierType
|
346
351
|
* @axes: reserved
|
347
|
-
* @device: the device that originated the event
|
352
|
+
* @device: the device that originated the event. If you want the physical
|
353
|
+
* device the event originated from, use clutter_event_get_source_device()
|
348
354
|
*
|
349
355
|
* Used for touch events.
|
350
356
|
*
|
@@ -420,6 +426,13 @@ guint32 clutter_event_get_time (const ClutterEv
|
|
420
426
|
void clutter_event_set_state (ClutterEvent *event,
|
421
427
|
ClutterModifierType state);
|
422
428
|
ClutterModifierType clutter_event_get_state (const ClutterEvent *event);
|
429
|
+
CLUTTER_AVAILABLE_IN_1_16
|
430
|
+
void clutter_event_get_state_full (const ClutterEvent *event,
|
431
|
+
ClutterModifierType *button_state,
|
432
|
+
ClutterModifierType *base_state,
|
433
|
+
ClutterModifierType *latched_state,
|
434
|
+
ClutterModifierType *locked_state,
|
435
|
+
ClutterModifierType *effective_state);
|
423
436
|
void clutter_event_set_device (ClutterEvent *event,
|
424
437
|
ClutterInputDevice *device);
|
425
438
|
ClutterInputDevice * clutter_event_get_device (const ClutterEvent *event);
|
@@ -104,6 +104,11 @@ void clutter_flow_layout_set_row_height (ClutterFlowLayout
|
|
104
104
|
void clutter_flow_layout_get_row_height (ClutterFlowLayout *layout,
|
105
105
|
gfloat *min_height,
|
106
106
|
gfloat *max_height);
|
107
|
+
CLUTTER_AVAILABLE_IN_1_16
|
108
|
+
void clutter_flow_layout_set_snap_to_grid (ClutterFlowLayout *layout,
|
109
|
+
gboolean snap_to_grid);
|
110
|
+
CLUTTER_AVAILABLE_IN_1_16
|
111
|
+
gboolean clutter_flow_layout_get_snap_to_grid (ClutterFlowLayout *layout);
|
107
112
|
|
108
113
|
G_END_DECLS
|
109
114
|
|
@@ -56,6 +56,8 @@ CLUTTER_AVAILABLE_IN_1_12
|
|
56
56
|
gboolean clutter_input_device_get_coords (ClutterInputDevice *device,
|
57
57
|
ClutterEventSequence *sequence,
|
58
58
|
ClutterPoint *point);
|
59
|
+
CLUTTER_AVAILABLE_IN_1_16
|
60
|
+
ClutterModifierType clutter_input_device_get_modifier_state (ClutterInputDevice *device);
|
59
61
|
ClutterActor * clutter_input_device_get_pointer_actor (ClutterInputDevice *device);
|
60
62
|
ClutterStage * clutter_input_device_get_pointer_stage (ClutterInputDevice *device);
|
61
63
|
const gchar * clutter_input_device_get_device_name (ClutterInputDevice *device);
|
@@ -40,7 +40,6 @@ G_BEGIN_DECLS
|
|
40
40
|
#define CLUTTER_IS_LAYOUT_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_LAYOUT_MANAGER))
|
41
41
|
#define CLUTTER_LAYOUT_MANAGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_LAYOUT_MANAGER, ClutterLayoutManagerClass))
|
42
42
|
|
43
|
-
typedef struct _ClutterLayoutManagerPrivate ClutterLayoutManagerPrivate;
|
44
43
|
typedef struct _ClutterLayoutManagerClass ClutterLayoutManagerClass;
|
45
44
|
|
46
45
|
/**
|
@@ -56,7 +55,7 @@ struct _ClutterLayoutManager
|
|
56
55
|
/*< private >*/
|
57
56
|
GInitiallyUnowned parent_instance;
|
58
57
|
|
59
|
-
|
58
|
+
gpointer CLUTTER_PRIVATE_FIELD (dummy);
|
60
59
|
};
|
61
60
|
|
62
61
|
/**
|
@@ -276,4 +276,18 @@
|
|
276
276
|
# define CLUTTER_AVAILABLE_IN_1_14
|
277
277
|
#endif
|
278
278
|
|
279
|
+
#if CLUTTER_VERSION_MIN_REQUIRED >= CLUTTER_VERSION_1_16
|
280
|
+
# define CLUTTER_DEPRECATED_IN_1_16 CLUTTER_DEPRECATED
|
281
|
+
# define CLUTTER_DEPRECATED_IN_1_16_FOR(f) CLUTTER_DEPRECATED_FOR(f)
|
282
|
+
#else
|
283
|
+
# define CLUTTER_DEPRECATED_IN_1_16
|
284
|
+
# define CLUTTER_DEPRECATED_IN_1_16_FOR(f)
|
285
|
+
#endif
|
286
|
+
|
287
|
+
#if CLUTTER_VERSION_MAX_ALLOWED < CLUTTER_VERSION_1_16
|
288
|
+
# define CLUTTER_AVAILABLE_IN_1_16 CLUTTER_UNAVAILABLE(1, 16)
|
289
|
+
#else
|
290
|
+
# define CLUTTER_AVAILABLE_IN_1_16
|
291
|
+
#endif
|
292
|
+
|
279
293
|
#endif /* __CLUTTER_MACROS_H__ */
|
@@ -103,10 +103,16 @@ void clutter_offscreen_effect_paint_target (ClutterOffscree
|
|
103
103
|
CoglHandle clutter_offscreen_effect_create_texture (ClutterOffscreenEffect *effect,
|
104
104
|
gfloat width,
|
105
105
|
gfloat height);
|
106
|
+
|
107
|
+
CLUTTER_DEPRECATED_IN_1_14_FOR (clutter_offscreen_effect_get_target_rect)
|
106
108
|
gboolean clutter_offscreen_effect_get_target_size (ClutterOffscreenEffect *effect,
|
107
109
|
gfloat *width,
|
108
110
|
gfloat *height);
|
109
111
|
|
112
|
+
CLUTTER_AVAILABLE_IN_1_14
|
113
|
+
gboolean clutter_offscreen_effect_get_target_rect (ClutterOffscreenEffect *effect,
|
114
|
+
ClutterRect *rect);
|
115
|
+
|
110
116
|
G_END_DECLS
|
111
117
|
|
112
118
|
#endif /* __CLUTTER_OFFSCREEN_EFFECT_H__ */
|
@@ -65,7 +65,8 @@ struct _ClutterText
|
|
65
65
|
* ClutterTextClass:
|
66
66
|
* @text_changed: class handler for the #ClutterText::text-changed signal
|
67
67
|
* @activate: class handler for the #ClutterText::activate signal
|
68
|
-
* @cursor_event: class handler for the #ClutterText::
|
68
|
+
* @cursor_event: class handler for the #ClutterText::cursor-event signal
|
69
|
+
* @cursor_changed: class handler for the #ClutterText::cursor-changed signal
|
69
70
|
*
|
70
71
|
* The #ClutterTextClass struct contains only private data.
|
71
72
|
*
|
@@ -78,10 +79,11 @@ struct _ClutterTextClass
|
|
78
79
|
|
79
80
|
/*< public >*/
|
80
81
|
/* signals, not vfuncs */
|
81
|
-
void (* text_changed)
|
82
|
-
void (* activate)
|
83
|
-
void (* cursor_event)
|
84
|
-
|
82
|
+
void (* text_changed) (ClutterText *self);
|
83
|
+
void (* activate) (ClutterText *self);
|
84
|
+
void (* cursor_event) (ClutterText *self,
|
85
|
+
const ClutterGeometry *geometry);
|
86
|
+
void (* cursor_changed) (ClutterText *self);
|
85
87
|
|
86
88
|
/*< private >*/
|
87
89
|
/* padding for future expansion */
|
@@ -92,7 +94,6 @@ struct _ClutterTextClass
|
|
92
94
|
void (* _clutter_reserved5) (void);
|
93
95
|
void (* _clutter_reserved6) (void);
|
94
96
|
void (* _clutter_reserved7) (void);
|
95
|
-
void (* _clutter_reserved8) (void);
|
96
97
|
};
|
97
98
|
|
98
99
|
GType clutter_text_get_type (void) G_GNUC_CONST;
|
@@ -182,6 +183,8 @@ void clutter_text_get_cursor_color (ClutterText *s
|
|
182
183
|
void clutter_text_set_cursor_size (ClutterText *self,
|
183
184
|
gint size);
|
184
185
|
guint clutter_text_get_cursor_size (ClutterText *self);
|
186
|
+
void clutter_text_get_cursor_rect (ClutterText *self,
|
187
|
+
ClutterRect *rect);
|
185
188
|
void clutter_text_set_selectable (ClutterText *self,
|
186
189
|
gboolean selectable);
|
187
190
|
gboolean clutter_text_get_selectable (ClutterText *self);
|
@@ -78,7 +78,7 @@ typedef struct _ClutterPathNode ClutterPathNode;
|
|
78
78
|
|
79
79
|
typedef struct _ClutterActorBox ClutterActorBox;
|
80
80
|
typedef struct _ClutterColor ClutterColor;
|
81
|
-
typedef struct _ClutterGeometry ClutterGeometry;
|
81
|
+
typedef struct _ClutterGeometry ClutterGeometry; /* XXX:2.0 - remove */
|
82
82
|
typedef struct _ClutterKnot ClutterKnot;
|
83
83
|
typedef struct _ClutterMargin ClutterMargin;
|
84
84
|
typedef struct _ClutterPerspective ClutterPerspective;
|
@@ -540,6 +540,8 @@ void clutter_actor_box_set_size (ClutterActorBox *box,
|
|
540
540
|
* <warning>You should not use #ClutterGeometry, or operate on its fields
|
541
541
|
* directly; you should use #cairo_rectangle_int_t or #ClutterRect if you
|
542
542
|
* need a rectangle type, depending on the precision required.</warning>
|
543
|
+
*
|
544
|
+
* Deprecated: 1.16
|
543
545
|
*/
|
544
546
|
struct _ClutterGeometry
|
545
547
|
{
|
@@ -552,9 +554,11 @@ struct _ClutterGeometry
|
|
552
554
|
|
553
555
|
GType clutter_geometry_get_type (void) G_GNUC_CONST;
|
554
556
|
|
557
|
+
CLUTTER_DEPRECATED_IN_1_16
|
555
558
|
void clutter_geometry_union (const ClutterGeometry *geometry_a,
|
556
559
|
const ClutterGeometry *geometry_b,
|
557
560
|
ClutterGeometry *result);
|
561
|
+
CLUTTER_DEPRECATED_IN_1_16
|
558
562
|
gboolean clutter_geometry_intersects (const ClutterGeometry *geometry0,
|
559
563
|
const ClutterGeometry *geometry1);
|
560
564
|
|