Merge "Ignore STREAM_RENDERER_PARAM_NULL params" into main am: b23315d005 am: 9443a6bd61

Original change: https://android-review.googlesource.com/c/platform/hardware/google/gfxstream/+/2980458

Change-Id: I334578d22a7a281f70280ba30805dba95bd6069b
Signed-off-by: Automerger Merge Worker <[email protected]>
diff --git a/host/virtio-gpu-gfxstream-renderer.cpp b/host/virtio-gpu-gfxstream-renderer.cpp
index fabe6cb..1cab174 100644
--- a/host/virtio-gpu-gfxstream-renderer.cpp
+++ b/host/virtio-gpu-gfxstream-renderer.cpp
@@ -2416,6 +2416,8 @@
         required_params.erase(param.key);
 
         switch (param.key) {
+            case STREAM_RENDERER_PARAM_NULL:
+                break;
             case STREAM_RENDERER_PARAM_USER_DATA: {
                 renderer_cookie = reinterpret_cast<void*>(static_cast<uintptr_t>(param.value));
                 globalUserData = renderer_cookie;