summaryrefslogtreecommitdiff
path: root/src/mesa/x86/glapi_x86.S
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-05-29 15:16:01 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-05-29 15:16:01 +0000
commit60f1a3c288dd663ff420fada558763d7524e499b (patch)
tree01207f3046504b1fcf7e4e2ab020f14fdd59b3a2 /src/mesa/x86/glapi_x86.S
parent1d155c1dd878d59f7cfdb6c4dfd5fc2ac2853573 (diff)
Added GL_NV_point_sprite functions: glPointParameteri[v]NV().
Removed dead ARB_window_pos functions (we alias the MESA_window_pos funcs).
Diffstat (limited to 'src/mesa/x86/glapi_x86.S')
-rw-r--r--src/mesa/x86/glapi_x86.S12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/x86/glapi_x86.S b/src/mesa/x86/glapi_x86.S
index 959ef2d8a8..3f32ba881e 100644
--- a/src/mesa/x86/glapi_x86.S
+++ b/src/mesa/x86/glapi_x86.S
@@ -4507,5 +4507,17 @@ GL_PREFIX(VertexAttribs4ubvNV):
MOV_L(GLNAME(_glapi_Dispatch), EAX)
JMP(GL_OFFSET(_gloffset_VertexAttribs4ubvNV))
+ALIGNTEXT16
+GLOBL_FN(GL_PREFIX(PointParameteriNV))
+GL_PREFIX(PointParameteriNV):
+ MOV_L(GLNAME(_glapi_Dispatch), EAX)
+ JMP(GL_OFFSET(_gloffset_PointParameteriNV))
+
+ALIGNTEXT16
+GLOBL_FN(GL_PREFIX(PointParameterivNV))
+GL_PREFIX(PointParameterivNV):
+ MOV_L(GLNAME(_glapi_Dispatch), EAX)
+ JMP(GL_OFFSET(_gloffset_PointParameterivNV))
+
#endif /* __WIN32__ */