Cleanup: Silence Unused parameter warnings.
- blender::gpu::GLContext - blender::gpu::VKContext
This commit is contained in:
@@ -389,17 +389,17 @@ void GLContext::debug_capture_end()
|
||||
{
|
||||
}
|
||||
|
||||
void *GLContext::debug_capture_scope_create(const char *name)
|
||||
void *GLContext::debug_capture_scope_create(const char * /*name*/)
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool GLContext::debug_capture_scope_begin(void *scope)
|
||||
bool GLContext::debug_capture_scope_begin(void * /*scope*/)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void GLContext::debug_capture_scope_end(void *scope)
|
||||
void GLContext::debug_capture_scope_end(void * /*scope*/)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -137,17 +137,17 @@ void VKContext::debug_capture_end()
|
||||
{
|
||||
}
|
||||
|
||||
void *VKContext::debug_capture_scope_create(const char *name)
|
||||
void *VKContext::debug_capture_scope_create(const char * /*name*/)
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool VKContext::debug_capture_scope_begin(void *scope)
|
||||
bool VKContext::debug_capture_scope_begin(void * /*scope*/)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void VKContext::debug_capture_scope_end(void *scope)
|
||||
void VKContext::debug_capture_scope_end(void * /*scope*/)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user