Announcement

Collapse
No announcement yet.

Open-Source Driver Fans Will Love NVIDIA's New OpenGL Demo

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #11
    Where is the link to the actual video?


    One big caveat of Phoronix is that only internal links are presented in each post. Michael, you really need to add links to each source on each post. This is essential.

    Comment


    • #12
      Originally posted by adakite View Post
      Where is the link to the actual video?


      One big caveat of Phoronix is that only internal links are presented in each post. Michael, you really need to add links to each source on each post. This is essential.
      You have it linked in last sentence, it is just four clicks away if you know what you looking for

      Step 1: http://www.phoronix.com/scan.php?pag...-Videos-Online
      Step 2: http://video.fosdem.org/2015/
      Step 3: http://video.fosdem.org/2015/devroom-graphics/
      Step 4: 'tegra.mp4' video and around 03:50" for few seconds you can see this
      Last edited by dungeon; 28 March 2015, 12:21 PM.

      Comment


      • #13
        Originally posted by adakite View Post
        Where is the link to the actual video?


        One big caveat of Phoronix is that only internal links are presented in each post. Michael, you really need to add links to each source on each post. This is essential.
        This userscript (Tamper/Greasemonkey) helps makes Phoronix less frustrating.
        Code:
        // ==UserScript==
        // @name        Phoronix External Link Finder
        // @description Phoronix is great, but they try too hard to keep you on the site. This script highlights links to external pages in blue, so you can pull them out of articles easier.
        // @namespace   http://userscripts.org/
        // @include     http://www.phoronix.com/*
        // @grant       none
        // @version     1
        // ==/UserScript==
        
        var elements = document.body.getElementsByTagName('a');
        
        for (var i = 0; i < elements.length; i++) {
            if(elements[i].href.indexOf("phoronix") == -1)
                elements[i].style.color = "blue";
        }
        Of course it doesn't help where there is no external link.

        Comment


        • #14
          Nvidia basically tells us: fuckoff, there will be no source!

          Comment


          • #15
            Originally posted by aschmidtm View Post
            Source?!
            It's just the desktop demo from gl2mark-es2 with the pixmaps replaced.

            Comment

            Working...
            X