mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
st/wgl: whitespace, formatting fixes in stw_device.c
Trivial.
This commit is contained in:
parent
12dc843367
commit
48faedbc7e
1 changed files with 9 additions and 12 deletions
|
|
@ -90,7 +90,7 @@ stw_init(const struct stw_winsys *stw_winsys)
|
|||
debug_disable_error_message_boxes();
|
||||
|
||||
debug_printf("%s\n", __FUNCTION__);
|
||||
|
||||
|
||||
assert(!stw_dev);
|
||||
|
||||
stw_tls_init();
|
||||
|
|
@ -101,7 +101,7 @@ stw_init(const struct stw_winsys *stw_winsys)
|
|||
#ifdef DEBUG
|
||||
stw_dev->memdbg_no = debug_memory_begin();
|
||||
#endif
|
||||
|
||||
|
||||
stw_dev->stw_winsys = stw_winsys;
|
||||
|
||||
stw_dev->stapi = stw_st_create_api();
|
||||
|
|
@ -110,10 +110,10 @@ stw_init(const struct stw_winsys *stw_winsys)
|
|||
goto error1;
|
||||
|
||||
screen = stw_winsys->create_screen();
|
||||
if(!screen)
|
||||
if (!screen)
|
||||
goto error1;
|
||||
|
||||
if(stw_winsys->get_adapter_luid)
|
||||
if (stw_winsys->get_adapter_luid)
|
||||
stw_winsys->get_adapter_luid(screen, &stw_dev->AdapterLuid);
|
||||
|
||||
stw_dev->smapi->screen = screen;
|
||||
|
|
@ -178,7 +178,7 @@ stw_cleanup(void)
|
|||
|
||||
if (!stw_dev)
|
||||
return;
|
||||
|
||||
|
||||
/*
|
||||
* Abort cleanup if there are still active contexts. In some situations
|
||||
* this DLL may be unloaded before the DLL that is using GL contexts is.
|
||||
|
|
@ -195,10 +195,10 @@ stw_cleanup(void)
|
|||
handle_table_destroy(stw_dev->ctx_table);
|
||||
|
||||
stw_framebuffer_cleanup();
|
||||
|
||||
|
||||
DeleteCriticalSection(&stw_dev->fb_mutex);
|
||||
DeleteCriticalSection(&stw_dev->ctx_mutex);
|
||||
|
||||
|
||||
FREE(stw_dev->smapi);
|
||||
stw_dev->stapi->destroy(stw_dev->stapi);
|
||||
|
||||
|
|
@ -220,9 +220,7 @@ stw_cleanup(void)
|
|||
|
||||
|
||||
void APIENTRY
|
||||
DrvSetCallbackProcs(
|
||||
INT nProcs,
|
||||
PROC *pProcs )
|
||||
DrvSetCallbackProcs(INT nProcs, PROC *pProcs)
|
||||
{
|
||||
size_t size;
|
||||
|
||||
|
|
@ -237,8 +235,7 @@ DrvSetCallbackProcs(
|
|||
|
||||
|
||||
BOOL APIENTRY
|
||||
DrvValidateVersion(
|
||||
ULONG ulVersion )
|
||||
DrvValidateVersion(ULONG ulVersion)
|
||||
{
|
||||
/* ulVersion is the version reported by the KMD:
|
||||
* - via D3DKMTQueryAdapterInfo(KMTQAITYPE_UMOPENGLINFO) on WDDM,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue