diff options
author | Brian Paul <[email protected]> | 2002-05-29 15:16:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-05-29 15:16:01 +0000 |
commit | 60f1a3c288dd663ff420fada558763d7524e499b (patch) | |
tree | 01207f3046504b1fcf7e4e2ab020f14fdd59b3a2 /src/mesa/x86 | |
parent | 1d155c1dd878d59f7cfdb6c4dfd5fc2ac2853573 (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')
-rw-r--r-- | src/mesa/x86/glapi_x86.S | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/x86/glapi_x86.S b/src/mesa/x86/glapi_x86.S index 959ef2d8a80..3f32ba881ee 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__ */ |