Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (39)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (7095)

  • build : Require yasm 0.8.0 or higher

    7 octobre 2013, par Derek Buitenhuis
    build : Require yasm 0.8.0 or higher
    

    This is in preparation for removing a .rodata kludge
    which was only required for older YASM versions.

    The movbe instruction was introduced in 0.8.0, which already
    had AVX, which was introduced in 0.7.0, and NASM introduced
    movbe in 2.0.3, which is the same version which introduced
    AVX support.

    Also, make the failure message more accurate.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] configure
  • x86inc : activate REP_RET automatically

    11 septembre 2013, par Loren Merritt
    x86inc : activate REP_RET automatically
    

    Now RET checks whether it immediately follows a branch, so the
    programmer dosen’t have to keep track of that condition. REP_RET
    is still needed manually when it’s a branch target, but that’s
    much rarer.

    The implementation involves lots of spurious labels, but that’s OK
    because we strip them.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavutil/x86/x86inc.asm
  • build : Strip spurious labels

    12 septembre 2013, par Loren Merritt
    build : Strip spurious labels
    

    The implementation of 25cb0c1a involves lots of spurious labels.

    The effect of keeping those labels around is making debugging harder.
    Those labels are meaningless, and complicate the disassembly. Also,
    gdb can’t tell the difference between them and function entry points.

    This new strip command is irrelevant to any usage of Libav that would
    have used the old fully stripped version, because the old one was for
    non-debug use.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] configure
    • [DH] library.mak