summaryrefslogtreecommitdiff
path: root/src/mesa/x86
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-05-18 22:01:13 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-05-18 22:01:13 +0000
commitf77064e9e2a0c6c69e1300c5975dcee4e6901a58 (patch)
treed4233ae5b2d182818739810afded13926283e432 /src/mesa/x86
parent70a9328de3ae7c767253737dd918d39b70d96f62 (diff)
DeleteTexturesEXT was missing
Diffstat (limited to 'src/mesa/x86')
-rw-r--r--src/mesa/x86/glapi_x86.S8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/x86/glapi_x86.S b/src/mesa/x86/glapi_x86.S
index 96096a7ae2..3afd50e0af 100644
--- a/src/mesa/x86/glapi_x86.S
+++ b/src/mesa/x86/glapi_x86.S
@@ -3820,6 +3820,14 @@ GL_PREFIX(BindTextureEXT):
JMP(GL_OFFSET(_gloffset_BindTexture))
ALIGNTEXT16
+GLOBL_FN(GL_PREFIX(DeleteTexturesEXT))
+GL_PREFIX(DeleteTexturesEXT):
+ MOV_L(GLNAME(_glapi_Dispatch), EAX)
+ TEST_L(EAX, EAX)
+ JZ(GLNAME(_glapi_fallback_DeleteTexturesEXT))
+ JMP(GL_OFFSET(_gloffset_DeleteTextures))
+
+ALIGNTEXT16
GLOBL_FN(GL_PREFIX(GenTexturesEXT))
GL_PREFIX(GenTexturesEXT):
MOV_L(GLNAME(_glapi_Dispatch), EAX)