mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-17 12:30:33 +01:00
gfxstream: fix warnings about unused parameters
Fix warnings. Reviewed-by: Aaron Ruby <aruby@qnx.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36047>
This commit is contained in:
parent
eaed2871d9
commit
650691e93c
1 changed files with 2 additions and 2 deletions
|
|
@ -196,8 +196,8 @@ class VirtGpuDevice {
|
|||
|
||||
virtual int execBuffer(struct VirtGpuExecBuffer& execbuffer, const VirtGpuResource* blob) = 0;
|
||||
|
||||
virtual bool getDrmInfo(VirtGpuDrmInfo* drmInfo) { return false; }
|
||||
virtual bool getPciBusInfo(VirtGpuPciBusInfo* pciBusInfo) { return false; }
|
||||
virtual bool getDrmInfo(VirtGpuDrmInfo* /*drmInfo*/) { return false; }
|
||||
virtual bool getPciBusInfo(VirtGpuPciBusInfo* /*pciBusInfo*/) { return false; }
|
||||
|
||||
private:
|
||||
enum VirtGpuCapset mCapset;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue