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
@@ -99,7 +99,8 @@ typedef int CoglBool;
|
|
99
99
|
#define COGL_GNUC_NULL_TERMINATED
|
100
100
|
#endif
|
101
101
|
|
102
|
-
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
|
102
|
+
#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) && \
|
103
|
+
!defined (COGL_COMPILATION)
|
103
104
|
#define COGL_GNUC_DEPRECATED \
|
104
105
|
__attribute__((__deprecated__))
|
105
106
|
#else
|
@@ -3,7 +3,7 @@
|
|
3
3
|
*
|
4
4
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
5
5
|
*
|
6
|
-
* Copyright (C) 2012 Intel Corporation.
|
6
|
+
* Copyright (C) 2012,2013 Intel Corporation.
|
7
7
|
*
|
8
8
|
* This library is free software; you can redistribute it and/or
|
9
9
|
* modify it under the terms of the GNU Lesser General Public
|
@@ -16,7 +16,8 @@
|
|
16
16
|
* Lesser General Public License for more details.
|
17
17
|
*
|
18
18
|
* You should have received a copy of the GNU Lesser General Public
|
19
|
-
* License along with this library. If not, see
|
19
|
+
* License along with this library. If not, see
|
20
|
+
* <http://www.gnu.org/licenses/>.
|
20
21
|
*
|
21
22
|
*
|
22
23
|
*/
|
@@ -33,7 +34,39 @@
|
|
33
34
|
* Cogl offers a set of macros for checking the version of the library
|
34
35
|
* at compile time.
|
35
36
|
*
|
36
|
-
*
|
37
|
+
* Cogl adds version information to both API deprecations and additions;
|
38
|
+
* by definining the macros %COGL_VERSION_MIN_REQUIRED and
|
39
|
+
* %COGL_VERSION_MAX_ALLOWED, you can specify the range of Cogl versions
|
40
|
+
* whose API you want to use. Functions that were deprecated before, or
|
41
|
+
* introduced after, this range will trigger compiler warnings. For instance,
|
42
|
+
* if we define the following symbols:
|
43
|
+
*
|
44
|
+
* |[
|
45
|
+
* COGL_VERSION_MIN_REQUIRED = COGL_VERSION_1_6
|
46
|
+
* COGL_VERSION_MAX_ALLOWED = COGL_VERSION_1_8
|
47
|
+
* ]|
|
48
|
+
*
|
49
|
+
* and we have the following functions annotated in the Cogl headers:
|
50
|
+
*
|
51
|
+
* |[
|
52
|
+
* COGL_DEPRECATED_IN_1_4 void cogl_function_A (void);
|
53
|
+
* COGL_DEPRECATED_IN_1_6 void cogl_function_B (void);
|
54
|
+
* COGL_AVAILABLE_IN_1_8 void cogl_function_C (void);
|
55
|
+
* COGL_AVAILABLE_IN_1_10 void cogl_function_D (void);
|
56
|
+
* ]|
|
57
|
+
*
|
58
|
+
* then any application code using the functions above will get the output:
|
59
|
+
*
|
60
|
+
* |[
|
61
|
+
* cogl_function_A: deprecation warning
|
62
|
+
* cogl_function_B: no warning
|
63
|
+
* cogl_function_C: no warning
|
64
|
+
* cogl_function_D: symbol not available warning
|
65
|
+
* ]|
|
66
|
+
*
|
67
|
+
* It is possible to disable the compiler warnings by defining the macro
|
68
|
+
* %COGL_DISABLE_DEPRECATION_WARNINGS before including the cogl.h
|
69
|
+
* header.
|
37
70
|
*/
|
38
71
|
|
39
72
|
/**
|
@@ -182,4 +215,118 @@
|
|
182
215
|
#define COGL_VERSION_CHECK(major, minor, micro) \
|
183
216
|
(COGL_VERSION >= COGL_VERSION_ENCODE (major, minor, micro))
|
184
217
|
|
218
|
+
/**
|
219
|
+
* COGL_VERSION_1_0:
|
220
|
+
*
|
221
|
+
* A macro that evaluates to the 1.0 version of Cogl, in a format
|
222
|
+
* that can be used by the C pre-processor.
|
223
|
+
*
|
224
|
+
* Since: 1.16
|
225
|
+
*/
|
226
|
+
#define COGL_VERSION_1_0 (COGL_VERSION_ENCODE (1, 0, 0))
|
227
|
+
|
228
|
+
/**
|
229
|
+
* COGL_VERSION_1_2:
|
230
|
+
*
|
231
|
+
* A macro that evaluates to the 1.2 version of Cogl, in a format
|
232
|
+
* that can be used by the C pre-processor.
|
233
|
+
*
|
234
|
+
* Since: 1.16
|
235
|
+
*/
|
236
|
+
#define COGL_VERSION_1_2 (COGL_VERSION_ENCODE (1, 2, 0))
|
237
|
+
|
238
|
+
/**
|
239
|
+
* COGL_VERSION_1_4:
|
240
|
+
*
|
241
|
+
* A macro that evaluates to the 1.4 version of Cogl, in a format
|
242
|
+
* that can be used by the C pre-processor.
|
243
|
+
*
|
244
|
+
* Since: 1.16
|
245
|
+
*/
|
246
|
+
#define COGL_VERSION_1_4 (COGL_VERSION_ENCODE (1, 4, 0))
|
247
|
+
|
248
|
+
/**
|
249
|
+
* COGL_VERSION_1_6:
|
250
|
+
*
|
251
|
+
* A macro that evaluates to the 1.6 version of Cogl, in a format
|
252
|
+
* that can be used by the C pre-processor.
|
253
|
+
*
|
254
|
+
* Since: 1.16
|
255
|
+
*/
|
256
|
+
#define COGL_VERSION_1_6 (COGL_VERSION_ENCODE (1, 6, 0))
|
257
|
+
|
258
|
+
/**
|
259
|
+
* COGL_VERSION_1_8:
|
260
|
+
*
|
261
|
+
* A macro that evaluates to the 1.8 version of Cogl, in a format
|
262
|
+
* that can be used by the C pre-processor.
|
263
|
+
*
|
264
|
+
* Since: 1.16
|
265
|
+
*/
|
266
|
+
#define COGL_VERSION_1_8 (COGL_VERSION_ENCODE (1, 8, 0))
|
267
|
+
|
268
|
+
/**
|
269
|
+
* COGL_VERSION_1_10:
|
270
|
+
*
|
271
|
+
* A macro that evaluates to the 1.10 version of Cogl, in a format
|
272
|
+
* that can be used by the C pre-processor.
|
273
|
+
*
|
274
|
+
* Since: 1.16
|
275
|
+
*/
|
276
|
+
#define COGL_VERSION_1_10 (COGL_VERSION_ENCODE (1, 10, 0))
|
277
|
+
|
278
|
+
/**
|
279
|
+
* COGL_VERSION_1_12:
|
280
|
+
*
|
281
|
+
* A macro that evaluates to the 1.12 version of Cogl, in a format
|
282
|
+
* that can be used by the C pre-processor.
|
283
|
+
*
|
284
|
+
* Since: 1.16
|
285
|
+
*/
|
286
|
+
#define COGL_VERSION_1_12 (COGL_VERSION_ENCODE (1, 12, 0))
|
287
|
+
|
288
|
+
/**
|
289
|
+
* COGL_VERSION_1_14:
|
290
|
+
*
|
291
|
+
* A macro that evaluates to the 1.14 version of Cogl, in a format
|
292
|
+
* that can be used by the C pre-processor.
|
293
|
+
*
|
294
|
+
* Since: 1.16
|
295
|
+
*/
|
296
|
+
#define COGL_VERSION_1_14 (COGL_VERSION_ENCODE (1, 14, 0))
|
297
|
+
|
298
|
+
/**
|
299
|
+
* COGL_VERSION_1_16:
|
300
|
+
*
|
301
|
+
* A macro that evaluates to the 1.16 version of Cogl, in a format
|
302
|
+
* that can be used by the C pre-processor.
|
303
|
+
*
|
304
|
+
* Since: 1.16
|
305
|
+
*/
|
306
|
+
#define COGL_VERSION_1_16 (COGL_VERSION_ENCODE (1, 16, 0))
|
307
|
+
|
308
|
+
/* evaluates to the current stable version; for development cycles,
|
309
|
+
* this means the next stable target
|
310
|
+
*/
|
311
|
+
#if (COGL_VERSION_MINOR_INTERNAL % 2)
|
312
|
+
#define COGL_VERSION_CURRENT_STABLE \
|
313
|
+
(COGL_VERSION_ENCODE (COGL_VERSION_MAJOR_INTERNAL, \
|
314
|
+
COGL_VERSION_MINOR_INTERNAL + 1, 0))
|
315
|
+
#else
|
316
|
+
#define COGL_VERSION_CURRENT_STABLE \
|
317
|
+
(COGL_VERSION_ENCODE (COGL_VERSION_MAJOR_INTERNAL, \
|
318
|
+
COGL_VERSION_MINOR_INTERNAL, 0))
|
319
|
+
#endif
|
320
|
+
|
321
|
+
/* evaluates to the previous stable version */
|
322
|
+
#if (COGL_VERSION_MINOR_INTERNAL % 2)
|
323
|
+
#define COGL_VERSION_PREVIOUS_STABLE \
|
324
|
+
(COGL_VERSION_ENCODE (COGL_VERSION_MAJOR_INTERNAL, \
|
325
|
+
COGL_VERSION_MINOR_INTERNAL - 1, 0))
|
326
|
+
#else
|
327
|
+
#define COGL_VERSION_PREVIOUS_STABLE \
|
328
|
+
(COGL_VERSION_ENCODE (COGL_VERSION_MAJOR_INTERNAL, \
|
329
|
+
COGL_VERSION_MINOR_INTERNAL - 2, 0))
|
330
|
+
#endif
|
331
|
+
|
185
332
|
#endif /* __COGL_VERSION_H__ */
|
@@ -34,6 +34,7 @@
|
|
34
34
|
#include <glib.h>
|
35
35
|
#include <cogl/cogl-defines.h>
|
36
36
|
#include <cogl/cogl-types.h>
|
37
|
+
#include <cogl/cogl-macros.h>
|
37
38
|
|
38
39
|
COGL_BEGIN_DECLS
|
39
40
|
|
@@ -82,7 +83,9 @@ COGL_BEGIN_DECLS
|
|
82
83
|
* Creates a new vertex buffer that you can use to add attributes.
|
83
84
|
*
|
84
85
|
* Return value: a new #CoglHandle
|
86
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
85
87
|
*/
|
88
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
86
89
|
CoglHandle
|
87
90
|
cogl_vertex_buffer_new (unsigned int n_vertices);
|
88
91
|
|
@@ -93,7 +96,9 @@ cogl_vertex_buffer_new (unsigned int n_vertices);
|
|
93
96
|
* Retrieves the number of vertices that @handle represents
|
94
97
|
*
|
95
98
|
* Return value: the number of vertices
|
99
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
96
100
|
*/
|
101
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
97
102
|
unsigned int
|
98
103
|
cogl_vertex_buffer_get_n_vertices (CoglHandle handle);
|
99
104
|
|
@@ -159,7 +164,10 @@ cogl_vertex_buffer_get_n_vertices (CoglHandle handle);
|
|
159
164
|
* |- - - - -0-0-0-0-0-0 0 0 0 0|
|
160
165
|
* </programlisting>
|
161
166
|
* (Though you can have multiple groups of interleved attributes)</note>
|
167
|
+
*
|
168
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
162
169
|
*/
|
170
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
163
171
|
void
|
164
172
|
cogl_vertex_buffer_add (CoglHandle handle,
|
165
173
|
const char *attribute_name,
|
@@ -177,7 +185,10 @@ cogl_vertex_buffer_add (CoglHandle handle,
|
|
177
185
|
* Deletes an attribute from a buffer. You will need to call
|
178
186
|
* cogl_vertex_buffer_submit() or issue a draw call to commit this
|
179
187
|
* change to the GPU.
|
188
|
+
*
|
189
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
180
190
|
*/
|
191
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
181
192
|
void
|
182
193
|
cogl_vertex_buffer_delete (CoglHandle handle,
|
183
194
|
const char *attribute_name);
|
@@ -193,7 +204,10 @@ cogl_vertex_buffer_delete (CoglHandle handle,
|
|
193
204
|
* validating your data; it potentially incurs a transport cost (especially if
|
194
205
|
* you are using GLX indirect rendering) and potentially a format conversion
|
195
206
|
* cost if the GPU doesn't natively support any of the given attribute formats.
|
207
|
+
*
|
208
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
196
209
|
*/
|
210
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
197
211
|
void
|
198
212
|
cogl_vertex_buffer_submit (CoglHandle handle);
|
199
213
|
|
@@ -210,7 +224,10 @@ cogl_vertex_buffer_submit (CoglHandle handle);
|
|
210
224
|
*
|
211
225
|
* You don't need to call cogl_vertex_buffer_submit() after using this
|
212
226
|
* function.
|
227
|
+
*
|
228
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
213
229
|
*/
|
230
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
214
231
|
void
|
215
232
|
cogl_vertex_buffer_disable (CoglHandle handle,
|
216
233
|
const char *attribute_name);
|
@@ -227,7 +244,10 @@ cogl_vertex_buffer_disable (CoglHandle handle,
|
|
227
244
|
* attributes before using a buffer for drawing.
|
228
245
|
*
|
229
246
|
* You don't need to call cogl_vertex_buffer_submit() after using this function
|
247
|
+
*
|
248
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
230
249
|
*/
|
250
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
231
251
|
void
|
232
252
|
cogl_vertex_buffer_enable (CoglHandle handle,
|
233
253
|
const char *attribute_name);
|
@@ -245,7 +265,10 @@ cogl_vertex_buffer_enable (CoglHandle handle,
|
|
245
265
|
*
|
246
266
|
* Any un-submitted attribute changes are automatically submitted before
|
247
267
|
* drawing.
|
268
|
+
*
|
269
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
248
270
|
*/
|
271
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
249
272
|
void
|
250
273
|
cogl_vertex_buffer_draw (CoglHandle handle,
|
251
274
|
CoglVerticesMode mode,
|
@@ -267,7 +290,10 @@ cogl_vertex_buffer_draw (CoglHandle handle,
|
|
267
290
|
*
|
268
291
|
* Return value: A CoglHandle for the indices which you can pass to
|
269
292
|
* cogl_vertex_buffer_draw_elements().
|
293
|
+
*
|
294
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
270
295
|
*/
|
296
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
271
297
|
CoglHandle
|
272
298
|
cogl_vertex_buffer_indices_new (CoglIndicesType indices_type,
|
273
299
|
const void *indices_array,
|
@@ -280,7 +306,10 @@ cogl_vertex_buffer_indices_new (CoglIndicesType indices_type,
|
|
280
306
|
* Queries back the data type used for the given indices
|
281
307
|
*
|
282
308
|
* Returns: The CoglIndicesType used
|
309
|
+
*
|
310
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
283
311
|
*/
|
312
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
284
313
|
CoglIndicesType
|
285
314
|
cogl_vertex_buffer_indices_get_type (CoglHandle indices);
|
286
315
|
|
@@ -303,7 +332,9 @@ cogl_vertex_buffer_indices_get_type (CoglHandle indices);
|
|
303
332
|
*
|
304
333
|
* Any un-submitted attribute changes are automatically submitted before
|
305
334
|
* drawing.
|
335
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
306
336
|
*/
|
337
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
307
338
|
void
|
308
339
|
cogl_vertex_buffer_draw_elements (CoglHandle handle,
|
309
340
|
CoglVerticesMode mode,
|
@@ -313,8 +344,6 @@ cogl_vertex_buffer_draw_elements (CoglHandle handle,
|
|
313
344
|
int indices_offset,
|
314
345
|
int count);
|
315
346
|
|
316
|
-
#ifndef COGL_DISABLE_DEPRECATED
|
317
|
-
|
318
347
|
/**
|
319
348
|
* cogl_vertex_buffer_ref:
|
320
349
|
* @handle: a @CoglHandle.
|
@@ -323,10 +352,11 @@ cogl_vertex_buffer_draw_elements (CoglHandle handle,
|
|
323
352
|
*
|
324
353
|
* Return value: the @handle.
|
325
354
|
*
|
326
|
-
* Deprecated: 1.2: Use
|
355
|
+
* Deprecated: 1.2: Use cogl_object_ref() instead
|
327
356
|
*/
|
357
|
+
COGL_DEPRECATED_FOR (cogl_object_ref)
|
328
358
|
CoglHandle
|
329
|
-
cogl_vertex_buffer_ref (CoglHandle handle)
|
359
|
+
cogl_vertex_buffer_ref (CoglHandle handle);
|
330
360
|
|
331
361
|
/**
|
332
362
|
* cogl_vertex_buffer_unref:
|
@@ -334,12 +364,11 @@ cogl_vertex_buffer_ref (CoglHandle handle) G_GNUC_DEPRECATED;
|
|
334
364
|
*
|
335
365
|
* Decrement the reference count for a vertex buffer
|
336
366
|
*
|
337
|
-
* Deprecated: 1.2: Use
|
367
|
+
* Deprecated: 1.2: Use cogl_object_unref() instead
|
338
368
|
*/
|
369
|
+
COGL_DEPRECATED_FOR (cogl_object_unref)
|
339
370
|
void
|
340
|
-
cogl_vertex_buffer_unref (CoglHandle handle)
|
341
|
-
|
342
|
-
#endif /* COGL_DISABLE_DEPRECATED */
|
371
|
+
cogl_vertex_buffer_unref (CoglHandle handle);
|
343
372
|
|
344
373
|
/**
|
345
374
|
* cogl_vertex_buffer_indices_get_for_quads:
|
@@ -371,7 +400,10 @@ cogl_vertex_buffer_unref (CoglHandle handle) G_GNUC_DEPRECATED;
|
|
371
400
|
*
|
372
401
|
* Returns: A %CoglHandle containing the indices. The handled is
|
373
402
|
* owned by Cogl and should not be modified or unref'd.
|
403
|
+
*
|
404
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
374
405
|
*/
|
406
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
375
407
|
CoglHandle
|
376
408
|
cogl_vertex_buffer_indices_get_for_quads (unsigned int n_indices);
|
377
409
|
|
@@ -385,7 +417,9 @@ cogl_vertex_buffer_indices_get_for_quads (unsigned int n_indices);
|
|
385
417
|
* otherwise
|
386
418
|
*
|
387
419
|
* Since: 1.0
|
420
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
388
421
|
*/
|
422
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
389
423
|
CoglBool
|
390
424
|
cogl_is_vertex_buffer (CoglHandle handle);
|
391
425
|
|
@@ -400,10 +434,11 @@ cogl_is_vertex_buffer (CoglHandle handle);
|
|
400
434
|
* otherwise
|
401
435
|
*
|
402
436
|
* Since: 1.4
|
437
|
+
* Deprecated: 1.16: Use the #CoglPrimitive api instead
|
403
438
|
*/
|
439
|
+
COGL_DEPRECATED_IN_1_16_FOR (cogl_primitive_API)
|
404
440
|
CoglBool
|
405
441
|
cogl_is_vertex_buffer_indices (CoglHandle handle);
|
406
|
-
|
407
442
|
COGL_END_DECLS
|
408
443
|
|
409
444
|
#endif /* __COGL_VERTEX_BUFFER_H__ */
|
@@ -94,6 +94,25 @@ cogl_win32_renderer_remove_filter (CoglRenderer *renderer,
|
|
94
94
|
CoglWin32FilterFunc func,
|
95
95
|
void *data);
|
96
96
|
|
97
|
+
/**
|
98
|
+
* cogl_win32_renderer_set_event_retrieval_enabled:
|
99
|
+
* @renderer: a #CoglRenderer
|
100
|
+
* @enable: The new value
|
101
|
+
*
|
102
|
+
* Sets whether Cogl should automatically retrieve messages from
|
103
|
+
* Windows. It defaults to %TRUE. It can be set to %FALSE if the
|
104
|
+
* application wants to handle its own message retrieval. Note that
|
105
|
+
* Cogl still needs to see all of the messages to function properly so
|
106
|
+
* the application should call cogl_win32_renderer_handle_event() for
|
107
|
+
* each message if it disables automatic event retrieval.
|
108
|
+
*
|
109
|
+
* Since: 1.16
|
110
|
+
* Stability: unstable
|
111
|
+
*/
|
112
|
+
void
|
113
|
+
cogl_win32_renderer_set_event_retrieval_enabled (CoglRenderer *renderer,
|
114
|
+
CoglBool enable);
|
115
|
+
|
97
116
|
COGL_END_DECLS
|
98
117
|
|
99
118
|
#endif /* __COGL_WIN32_RENDERER_H__ */
|
@@ -44,6 +44,8 @@
|
|
44
44
|
*/
|
45
45
|
|
46
46
|
#include <cogl/cogl-defines.h>
|
47
|
+
#include <cogl/cogl-macros.h>
|
48
|
+
|
47
49
|
#include <cogl/cogl-error.h>
|
48
50
|
|
49
51
|
#include <cogl/cogl-object.h>
|
@@ -62,7 +64,6 @@
|
|
62
64
|
* 1.x only api...
|
63
65
|
*/
|
64
66
|
#ifndef COGL_ENABLE_EXPERIMENTAL_2_0_API
|
65
|
-
#include <cogl/cogl-path.h>
|
66
67
|
#include <cogl/cogl-clip-state.h>
|
67
68
|
#include <cogl/cogl-vertex-buffer.h>
|
68
69
|
#include <cogl/cogl-enum-types.h>
|
@@ -91,6 +92,7 @@
|
|
91
92
|
#include <cogl/cogl-texture-3d.h>
|
92
93
|
#include <cogl/cogl-texture-2d-sliced.h>
|
93
94
|
#include <cogl/cogl-sub-texture.h>
|
95
|
+
#include <cogl/cogl-atlas-texture.h>
|
94
96
|
#include <cogl/cogl-meta-texture.h>
|
95
97
|
#include <cogl/cogl-primitive-texture.h>
|
96
98
|
#include <cogl/cogl-index-buffer.h>
|
@@ -107,6 +109,7 @@
|
|
107
109
|
#include <cogl/cogl-onscreen.h>
|
108
110
|
#include <cogl/cogl-frame-info.h>
|
109
111
|
#include <cogl/cogl-poll.h>
|
112
|
+
#include <cogl/cogl-fence.h>
|
110
113
|
#if defined (COGL_HAS_EGL_PLATFORM_KMS_SUPPORT)
|
111
114
|
#include <cogl/cogl-kms-renderer.h>
|
112
115
|
#include <cogl/cogl-kms-display.h>
|
@@ -126,18 +129,19 @@
|
|
126
129
|
#endif
|
127
130
|
|
128
131
|
/*
|
129
|
-
*
|
132
|
+
* API deprecations
|
130
133
|
*/
|
131
|
-
#
|
132
|
-
#include <cogl/cogl2-path.h>
|
133
|
-
/* This header will be removed in Cogl 1.12 */
|
134
|
-
#include <cogl/cogl2-compatibility.h>
|
135
|
-
#endif
|
134
|
+
#include <cogl/cogl-deprecated.h>
|
136
135
|
|
137
136
|
/*
|
138
|
-
*
|
137
|
+
* Cogl Path api compatability
|
138
|
+
*
|
139
|
+
* The cogl_path_ api used to be part of the core Cogl api so for
|
140
|
+
* compatability we include cogl-path.h via cogl.h
|
139
141
|
*/
|
140
|
-
#
|
142
|
+
#if defined (COGL_HAS_COGL_PATH_SUPPORT)
|
143
|
+
#include <cogl-path/cogl-path.h>
|
144
|
+
#endif
|
141
145
|
|
142
146
|
/**
|
143
147
|
* SECTION:cogl
|