Browse Source

LibVirtGPU: Add enum for Gallium texture formats

Stephan Unverwerth 2 years ago
parent
commit
65a1ebcccf
1 changed files with 4 additions and 0 deletions
  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
+};
+
 }
 
 }