Conversation
Remove m_ycbcrPrimariesConstants which unused in the codebase.
|
Hello @zlatinski I opened this MR to discuss the use m_ycbcrPrimariesConstants which is unused in VulkanFilterYuvCompute.cpp. It allows to avoid a warning on Windows building this with CTS. Can you give your input on what you prefer to do with this unused variable ? This patch is necessary for #103 |
zlatinski
left a comment
There was a problem hiding this comment.
The functionality is to be extended in the future and those parameters are needed.
You can always replace:
"const YcbcrPrimariesConstants* pYcbcrPrimariesConstants," with
const YcbcrPrimariesConstants*, to quiet down these warnings, without hanging the function's APIs.
|
I gave another try and I havent been able to reproduce the build issue with the latest Closing. |
|
able to reproduce with: |
Void m_ycbcrPrimariesConstants which unused in the codebase but kept for future implementation. See KhronosGroup#102
Void m_ycbcrPrimariesConstants which unused in the codebase but kept for future implementation. See #102
Remove m_ycbcrPrimariesConstants which is
unused in the codebase.