main sync #3

Merged
Patrick Busch merged 318 commits from blender/blender:main into main 2023-03-17 15:52:21 +01:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit 5e0cc9d277 - Show all commits

View File

@ -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*/)
{
}

View File

@ -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*/)
{
}