Przeglądaj źródła

LibVirtGPU: Add enum for Gallium texture formats

Stephan Unverwerth 2 lat temu
rodzic
commit
65a1ebcccf
1 zmienionych plików z 4 dodań i 0 usunięć
  1. 4 0
      Userland/Libraries/LibVirtGPU/VirGLProtocol.h

+ 4 - 0
Userland/Libraries/LibVirtGPU/VirGLProtocol.h

@@ -212,6 +212,10 @@ enum class ShaderType : u32 {
     SHADER_TYPES
 };
 
+enum class PipeFormat : u32 {
+    R32G32B32_FLOAT = 30
+};
+
 }
 
 }