Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
A
angle
  • Project
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Chen Yisong
  • angle
  • Repository

Switch branch/tag
  • angle
  • src
  • tests
  • gl_tests
  • ShaderStorageBufferTest.cpp
Find file
BlameHistoryPermalink
  • Qin Jiajia's avatar
    ES31: add row major matrix support (part 1) · d60e42f8
    Qin Jiajia authored Oct 25, 2018
    This is the first patch to enable row major matrix suppot in series. This patch
    ensures that we can get correct location when we load/store data from matrix.
    Currently, only scalar data load/store works well.
    
    mat2x3 data
    The location of data[x][y] will be:
    data.offset + x * scalarStride + y * matrixStride  //row_major
    data.offset + x * matrixStride + y * scalarStride  //column_major
    
    Bug: angleproject:1951
    Change-Id: I5bd7bad7d293219ba610f18eeafc56e70e36de43
    Reviewed-on: https://chromium-review.googlesource.com/c/1304017Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org>
    Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
    Commit-Queue: Jiajia Qin <jiajia.qin@intel.com>
    d60e42f8
ShaderStorageBufferTest.cpp 32.7 KB
EditWeb IDE
×

Replace ShaderStorageBufferTest.cpp

Attach a file by drag & drop or click to upload


Cancel
A new branch will be created in your fork and a new merge request will be started.