Tizen 2.0 Release
[profile/ivi/osmesa.git] / src / mesa / drivers / dri / savage / savagedd.c
1 /*
2  * Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved.
3  * Copyright 2001-2003 S3 Graphics, Inc. All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sub license,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19  * VIA, S3 GRAPHICS, AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24
25
26 #include "main/mtypes.h"
27 #include "main/framebuffer.h"
28
29 #include <stdio.h>
30
31 #include "main/mm.h"
32
33 #include "savagedd.h"
34 #include "savagestate.h"
35 #include "savagetex.h"
36 #include "savagecontext.h"
37
38 #include "utils.h"
39
40
41 /***************************************
42  * Mesa's Driver Functions
43  ***************************************/
44
45
46 static const GLubyte *savageDDGetString( struct gl_context *ctx, GLenum name )
47 {
48    static char *cardNames[S3_LAST] = {
49        "Unknown",
50        "Savage3D",
51        "Savage/MX/IX",
52        "Savage4",
53        "ProSavage",
54        "Twister",
55        "ProSavageDDR",
56        "SuperSavage",
57        "Savage2000"
58    };
59    static char buffer[128];
60    savageContextPtr imesa = SAVAGE_CONTEXT(ctx);
61    savageScreenPrivate *screen = imesa->savageScreen;
62    enum S3CHIPTAGS chipset = screen->chipset;
63    unsigned offset;
64
65    if (chipset < S3_SAVAGE3D || chipset >= S3_LAST)
66       chipset = S3_UNKNOWN; /* should not happen */
67
68    switch (name) {
69    case GL_VENDOR:
70       return (GLubyte *)"S3 Graphics Inc.";
71    case GL_RENDERER:
72       offset = driGetRendererString( buffer, cardNames[chipset],
73                                      screen->agpMode );
74       return (GLubyte *)buffer;
75    default:
76       return 0;
77    }
78 }
79 #if 0
80 static GLint savageGetParameteri(const struct gl_context *ctx, GLint param)
81 {
82    switch (param) {
83    case DD_HAVE_HARDWARE_FOG:
84       return 1;
85    default:
86       return 0;
87    }
88 }
89 #endif
90
91
92 void savageDDInitDriverFuncs( struct gl_context *ctx )
93 {
94    ctx->Driver.GetString = savageDDGetString;
95 }