mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
Provide dummy definitions of __driConfig externs
This commit is contained in:
parent
f7c17fef74
commit
6b9e8279dd
4 changed files with 12 additions and 0 deletions
|
|
@ -39,6 +39,9 @@
|
|||
|
||||
#define FFB_DATE "20021125"
|
||||
|
||||
const char __driConfigOptions[] = { 0 };
|
||||
const GLuint __driNConfigOptions = 0;
|
||||
|
||||
/* Mesa's Driver Functions */
|
||||
|
||||
static const GLubyte *ffbDDGetString(GLcontext *ctx, GLenum name)
|
||||
|
|
|
|||
|
|
@ -62,6 +62,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
int I810_DEBUG = (0);
|
||||
#endif
|
||||
|
||||
const char __driConfigOptions[] = { 0 };
|
||||
const GLuint __driNConfigOptions = 0;
|
||||
|
||||
static const GLubyte *i810GetString( GLcontext *ctx, GLenum name )
|
||||
{
|
||||
switch (name) {
|
||||
|
|
|
|||
|
|
@ -72,6 +72,10 @@ int I830_DEBUG = (0);
|
|||
|
||||
#define DRIVER_DATE "20021115"
|
||||
|
||||
|
||||
const char __driConfigOptions[] = { 0 };
|
||||
const GLuint __driNConfigOptions = 0;
|
||||
|
||||
static const GLubyte *i830DDGetString( GLcontext *ctx, GLenum name )
|
||||
{
|
||||
const char * chipset;
|
||||
|
|
|
|||
|
|
@ -54,6 +54,8 @@
|
|||
#include "tnl/tnl.h"
|
||||
#include "tnl/t_pipeline.h"
|
||||
|
||||
const char __driConfigOptions[] = { 0 };
|
||||
const GLuint __driNConfigOptions = 0;
|
||||
|
||||
/*
|
||||
* Enable/Disable the extensions for this context.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue