Merge "Allow type conversion from YUVPlane to int" into main

GitOrigin-RevId: d2284dc33731b068204a2c94733c3407d53ba290
Change-Id: Ia873abe5e78e63f877244c119b3534c33f76a9ef
diff --git a/host/gl/YUVConverter.h b/host/gl/YUVConverter.h
index 7518742..a31103e 100644
--- a/host/gl/YUVConverter.h
+++ b/host/gl/YUVConverter.h
@@ -28,7 +28,7 @@
 namespace gfxstream {
 namespace gl {
 
-enum class YUVPlane {
+enum class YUVPlane : int {
     Y = 0,
     U = 1,
     V = 2,