mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
/******************************Module*Header*******************************\
|
|
* Module Name: gencpu.c *
|
|
* *
|
|
* This module hooks any CPU or implementation-specific OpenGL *
|
|
* functionality. *
|
|
* *
|
|
* Created: 18-Feb-1994 *
|
|
* Author: Otto Berkes [ottob] *
|
|
* *
|
|
* Copyright (c) 1994 Microsoft Corporation *
|
|
\**************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
BOOL FASTCALL __glCreateAccelContext(__GLcontext *gc)
|
|
{
|
|
return __glGenCreateAccelContext(gc);
|
|
}
|
|
|
|
void FASTCALL __glDestroyAccelContext(__GLcontext *gc)
|
|
{
|
|
__glGenDestroyAccelContext(gc);
|
|
}
|