RESOLVED FIXED 105847
[Texmap] Rename TextureMapperShaderManager.* TextureMapperShaderProgram.*
https://bugs.webkit.org/show_bug.cgi?id=105847
Summary [Texmap] Rename TextureMapperShaderManager.* TextureMapperShaderProgram.*
Noam Rosenthal
Reported 2012-12-28 21:07:06 PST
[Texmap] Rename TextureMapperShaderManager.* TextureMapperShaderProgram.*
Attachments
Patch (56.41 KB, patch)
2012-12-28 21:13 PST, Noam Rosenthal
no flags
Patch (56.50 KB, patch)
2012-12-28 21:27 PST, Noam Rosenthal
no flags
Patch (56.43 KB, patch)
2013-01-18 14:29 PST, Noam Rosenthal
no flags
Patch for landing (56.55 KB, patch)
2013-01-23 00:02 PST, Noam Rosenthal
no flags
Noam Rosenthal
Comment 1 2012-12-28 21:13:20 PST
WebKit Review Bot
Comment 2 2012-12-28 21:16:12 PST
Attachment 180914 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCor..." exit_code: 1 Source/WebCore/platform/graphics/texmap/TextureMapperShaderProgram.cpp:125: Code inside a namespace should not be indented. [whitespace/indent] [4] Total errors found: 1 in 7 files If any of these errors are false positives, please file a bug against check-webkit-style.
Noam Rosenthal
Comment 3 2012-12-28 21:27:36 PST
Noam Rosenthal
Comment 4 2013-01-18 14:29:00 PST
WebKit Review Bot
Comment 5 2013-01-18 14:34:12 PST
Attachment 183545 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCor..." exit_code: 1 Source/WebCore/platform/graphics/texmap/TextureMapperShaderProgram.cpp:125: Code inside a namespace should not be indented. [whitespace/indent] [4] Total errors found: 1 in 7 files If any of these errors are false positives, please file a bug against check-webkit-style.
Noam Rosenthal
Comment 6 2013-01-19 00:09:40 PST
(In reply to comment #5) > Attachment 183545 [details] did not pass style-queue: > > Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCor..." exit_code: 1 > Source/WebCore/platform/graphics/texmap/TextureMapperShaderProgram.cpp:125: Code inside a namespace should not be indented. [whitespace/indent] [4] > Total errors found: 1 in 7 files > > > If any of these errors are false positives, please file a bug against check-webkit-style. False positive. Already filed.
Kenneth Rohde Christiansen
Comment 7 2013-01-22 09:12:43 PST
Comment on attachment 183545 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=183545&action=review r+ given you add a comment in the changelog: > Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp:96 > - TextureMapperShaderManager textureMapperShaderManager; > + PassRefPtr<TextureMapperShaderProgram> getShaderProgram(TextureMapperShaderProgram::Options options) > + { > + HashMap<TextureMapperShaderProgram::Options, RefPtr<TextureMapperShaderProgram> >::iterator it = m_programs.find(options); > + if (it != m_programs.end()) > + return it->value; > + > + RefPtr<TextureMapperShaderProgram> program = TextureMapperShaderProgram::create(m_context, options); > + m_programs.add(options, program); > + return program; this looks like more than refactorings, should be described shortly in the changelog
Noam Rosenthal
Comment 8 2013-01-23 00:02:46 PST
Created attachment 184164 [details] Patch for landing
WebKit Review Bot
Comment 9 2013-01-23 00:33:36 PST
Comment on attachment 184164 [details] Patch for landing Clearing flags on attachment: 184164 Committed r140518: <http://trac.webkit.org/changeset/140518>
WebKit Review Bot
Comment 10 2013-01-23 00:33:41 PST
All reviewed patches have been landed. Closing bug.
WebKit Review Bot
Comment 11 2013-01-23 07:37:12 PST
Re-opened since this is blocked by bug 107691
Note You need to log in before you can comment on or make changes to this bug.