RESOLVED FIXED 143298
[TexMap] Clean up BitmapTexture and BitmapTextureGL.
https://bugs.webkit.org/show_bug.cgi?id=143298
Summary [TexMap] Clean up BitmapTexture and BitmapTextureGL.
Gwang Yoon Hwang
Reported 2015-04-01 01:43:17 PDT
[TexMap] Clean up BitmapTexture and BitmapTextureGL.
Attachments
Patch (15.21 KB, patch)
2015-04-01 01:44 PDT, Gwang Yoon Hwang
no flags
Patch (16.08 KB, patch)
2015-04-01 06:59 PDT, Gwang Yoon Hwang
zan: review+
Patch (9.64 KB, patch)
2015-10-24 18:17 PDT, Gwang Yoon Hwang
no flags
Gwang Yoon Hwang
Comment 1 2015-04-01 01:44:36 PDT
Zan Dobersek
Comment 2 2015-04-01 02:26:51 PDT
Comment on attachment 249905 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249905&action=review This looks almost perfect. Left a few comments though. While the patch looks harmless, I wouldn't land it before the EFL port fixes the last regression. > Source/WebCore/platform/graphics/texmap/BitmapTexture.h:70 > + virtual bool canReuseWith(const IntSize& /* contentsSize */, bool /* hasAlpha */ = 0) { return false; } Can we drop the hasAlpha parameter? It's unused in the current code. > Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp:65 > +static bool driverSupportsExternalTextureBGRA(GraphicsContext3D* context) This can just take in a reference to the GraphicsContext3D object. > Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp:91 > + if (driverSupportsExternalTextureBGRA(m_context3D.get())) Can we afford caching the return value of driverSupportsExternalTextureBGRA() in a member variable?
Gwang Yoon Hwang
Comment 3 2015-04-01 06:59:20 PDT
Gwang Yoon Hwang
Comment 4 2015-04-01 07:02:33 PDT
(In reply to comment #2) > Comment on attachment 249905 [details] > Patch > > Source/WebCore/platform/graphics/texmap/BitmapTexture.h:70 > > + virtual bool canReuseWith(const IntSize& /* contentsSize */, bool /* hasAlpha */ = 0) { return false; } > > Can we drop the hasAlpha parameter? It's unused in the current code. > I just removed canReuseWith, this method is not needed anymore. > > Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp:65 > > +static bool driverSupportsExternalTextureBGRA(GraphicsContext3D* context) > > This can just take in a reference to the GraphicsContext3D object. > > > Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp:91 > > + if (driverSupportsExternalTextureBGRA(m_context3D.get())) > > Can we afford caching the return value of > driverSupportsExternalTextureBGRA() in a member variable? Good catch. we can test it with a m_format whether swizzling is needed or not.
Zan Dobersek
Comment 5 2015-05-21 00:41:38 PDT
Comment on attachment 249919 [details] Patch Looks good.
Martin Robinson
Comment 6 2015-05-21 07:55:27 PDT
Comment on attachment 249919 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249919&action=review > Source/WebCore/platform/graphics/texmap/TextureMapperTile.cpp:66 > + m_texture->reset(targetRect.size(), true); Here I think you should either keep the enum or put in a comment, because of this style rule: "Prefer enums to bools on function parameters if callers are likely to be passing constants, since named constants are easier to read at the call site. An exception to this rule is a setter function, where the name of the function already makes clear what the boolean is." The new version is a little harder to understand.
Gwang Yoon Hwang
Comment 7 2015-10-24 18:17:10 PDT
Gwang Yoon Hwang
Comment 8 2015-10-24 18:30:25 PDT
(In reply to comment #6) > Comment on attachment 249919 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=249919&action=review > > > Source/WebCore/platform/graphics/texmap/TextureMapperTile.cpp:66 > > + m_texture->reset(targetRect.size(), true); > > Here I think you should either keep the enum or put in a comment, because of > this style rule: > > "Prefer enums to bools on function parameters if callers are likely to be > passing constants, since named constants are easier to read at the call > site. An exception to this rule is a setter function, where the name of the > function already makes clear what the boolean is." > > The new version is a little harder to understand. Ah, I thought this patch was already landed. :/ Anyway, I agree with your review, thank you so much for quoting the guideline. I learned one more thing today. I reverted changes related with Flags.
WebKit Commit Bot
Comment 9 2015-10-24 19:24:04 PDT
Comment on attachment 263995 [details] Patch Clearing flags on attachment: 263995 Committed r191541: <http://trac.webkit.org/changeset/191541>
Note You need to log in before you can comment on or make changes to this bug.