- 29 May, 2013 1 commit
-
-
shannonwoods@chromium.org authored
TRAC #23124 Signed-off-by: Shannon Woods Signed-off-by: Geoff Lang Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2252 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
- 20 May, 2013 1 commit
-
-
shannonwoods@chromium.org authored
Landing on behalf of Net147 Review URL: https://codereview.appspot.com/8615046/ git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2241 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
- 17 May, 2013 25 commits
-
-
shannonwoods@chromium.org authored
git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2240 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
BUG=crbug 179653 R=aedla@chromium.org, kbr@chromium.org Review URL: https://codereview.appspot.com/8834048 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2239 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
Fixed error that allowed negative index for accessing vector, matrix, and array. Now we report compile error and clamp the index to 0. Re-arranged code around it to handle negative index at the one location. BUG=crbug.com/239411 TEST=bug test case R=aedla@chromium.org, kbr@chromium.org Review URL: https://codereview.appspot.com/9193045 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2238 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
R=kbr@chromium.org Review URL: https://codereview.appspot.com/9078046 Conflicts: src/compiler/glslang_tab.cpp src/compiler/glslang_tab.h git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2237 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
Review URL: https://codereview.appspot.com/9309044 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2236 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
We had a TTypeLine to represent a structure field, which simply encapsulated a TType and line number. The line number was only used during parsing for error reporting. There is no need to store a line number because it is already available in the parser token. TEST=WebGL conformance tests R=kbr@chromium.org Review URL: https://codereview.appspot.com/9223045 Additional edits required for dx11proto branch: src/compiler/OutputHLSL.cpp src/compiler/Types.h Conflicts: src/compiler/glslang_tab.cpp src/compiler/glslang_tab.h git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2235 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
R=kbr@chromium.org Review URL: https://codereview.appspot.com/9242043 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2234 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
Saves 20% memory for global symbol initialization R=alokp@chromium.org Review URL: https://codereview.appspot.com/9152043 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2233 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
Identifier is sufficient to parse struct fieldname. TEST=WebGL conformance tests. Review URL: https://codereview.appspot.com/8709048 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2232 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
It is handled by the preprocessor. Added an assert. TEST=WebGL conformance tests. TBR=kbr@chromium.org Review URL: https://codereview.appspot.com/8653052 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2231 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TEST=WebGL conformance tests TBR=kbr@chromium.org Review URL: https://codereview.appspot.com/8983043 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2230 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
To distinguish the tokens we used to track the lexer context, which is fragile. This patch implements a better way - combine the two tokens into a common parser rule and let the parser context decide if the declaration is valid, which it already does by checking the naming conflicts. TEST=WebGL conformance tests. Review URL: https://codereview.appspot.com/8797044 Conflicts: src/compiler/glslang_tab.cpp src/compiler/glslang_tab.h git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2229 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
Delete dead-code for handling comments and invalid octal integers. These are already handled by the preprocessor. TEST=WebGL conformance tests. Review URL: https://codereview.appspot.com/8632053 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2228 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TBR=kbr@chromium.org Review URL: https://codereview.appspot.com/8927045 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2227 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TEST=WebGL conformance tests. TBR=kbr@chromium.org Review URL: https://codereview.appspot.com/8925044 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2226 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
Note that I am planning to get rid of PoolAllocator entirely. BUG=crbug 179654 Review URL: https://codereview.appspot.com/8662046 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2225 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #23029 Author: Shannon Woods Signed-off-by: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2224 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #23029 Signed-off-by: Jamie Madill Signed-off-by: Shannon Woods Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2223 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #22934 Signed-off-by: Nicolas Capens Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2222 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #22865 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2221 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #22881 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2220 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #22898 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill Conflicts: src/libGLESv2/libGLESv2.vcxproj.filters git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2219 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #22898 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2218 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #22898 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2217 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
shannonwoods@chromium.org authored
TRAC #22937 Signed-off-by: Shannon Woods Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2216 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
- 15 May, 2013 1 commit
-
-
apatrick@chromium.org authored
Review URL: https://codereview.appspot.com/9427043 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2213 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
- 09 May, 2013 2 commits
-
-
apatrick@chromium.org authored
Review URL: https://codereview.appspot.com/9330043 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2204 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
apatrick@chromium.org authored
Review URL: https://codereview.appspot.com/9279048 git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2203 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
- 12 Apr, 2013 7 commits
-
-
git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2053 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
TRAC #22888 Signed-off-by: Nicolas Capens Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2052 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
TRAC #22888 Signed-off-by: Nicolas Capens Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2051 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
Report gl_MaxDrawBuffers as 1 when the MRT extension is disabled, and the implementation value otherwise. TRAC #22888 Signed-off-by: Nicolas Capens Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2050 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2049 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
See https://codereview.appspot.com/8038044 TRAC #22882 Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2048 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
This is necessary for continuous integration to pass D3D11 mode build flags. TRAC #22555 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2047 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
- 27 Mar, 2013 1 commit
-
-
Bind GL_NONE to buffers beyond the specified input count, and require a buffer count of one for the default framebuffer. TRAC #22835 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2039 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
- 23 Mar, 2013 2 commits
-
-
git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2037 736b8ea6-26fd-11df-bfd4-992fa37f6226
-
See https://code.google.com/p/angleproject/source/detail?r=1993 TRAC #22826 Signed-off-by: Geoff Lang Signed-off-by: Shannon Woods Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@2036 736b8ea6-26fd-11df-bfd4-992fa37f6226
-