1. 25 May, 2015 4 commits
  2. 22 May, 2015 5 commits
  3. 20 May, 2015 6 commits
  4. 19 May, 2015 4 commits
  5. 18 May, 2015 1 commit
  6. 15 May, 2015 6 commits
  7. 14 May, 2015 4 commits
  8. 13 May, 2015 6 commits
  9. 12 May, 2015 3 commits
  10. 11 May, 2015 1 commit
    • Printing sizes properly · f78e963d
      Alexis Hetu authored
      Sizes weren't getting printed properly
      because of their type. In this case,
      primarySize, for example, is an
      unsigned char, so it gets printed as if
      it were a character instead of a number.
      Changing it to "primarySize + '0'" also
      fails, because then the result of the
      operator+ gets interpreted as an int.
      To get it to work, I would need either
      something like:
      static_cast<char>(primarySize + '0')
      or
      static_cast<int>(primarySize)
      I chose the latter.
      
      Change-Id: Ib0718a7a86ef4314f886b653526240aa788fb3df
      Reviewed-on: https://swiftshader-review.googlesource.com/3084Reviewed-by: 's avatarNicolas Capens <capn@google.com>
      Tested-by: 's avatarAlexis Hétu <sugoi@google.com>