diff options
author | Brian Paul <[email protected]> | 2001-11-18 23:52:37 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-11-18 23:52:37 +0000 |
commit | 5b7dab2e4c7df1fde0a7fcf28b8b54745b9fcd2e (patch) | |
tree | 05ce265fc4b97cfb18e32b20eefd6c05cfbad42a /src/mesa/x86/glapi_x86.S | |
parent | 17fe22d3bfcce0471ab9ae638cc6b0c91f7d8e65 (diff) |
added test implementation of GL_ARB_window_pos
Diffstat (limited to 'src/mesa/x86/glapi_x86.S')
-rw-r--r-- | src/mesa/x86/glapi_x86.S | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/src/mesa/x86/glapi_x86.S b/src/mesa/x86/glapi_x86.S index 8ddb165a3c2..a94697b560c 100644 --- a/src/mesa/x86/glapi_x86.S +++ b/src/mesa/x86/glapi_x86.S @@ -4033,5 +4033,101 @@ GL_PREFIX(SamplePatternEXT): MOV_L(GLNAME(_glapi_Dispatch), EAX) JMP(GL_OFFSET(_gloffset_SamplePatternSGIS)) +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2dARB)) +GL_PREFIX(WindowPos2dARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2dARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2fARB)) +GL_PREFIX(WindowPos2fARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2fARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2iARB)) +GL_PREFIX(WindowPos2iARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2iARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2sARB)) +GL_PREFIX(WindowPos2sARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2sARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2dvARB)) +GL_PREFIX(WindowPos2dvARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2dvARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2fvARB)) +GL_PREFIX(WindowPos2fvARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2fvARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2ivARB)) +GL_PREFIX(WindowPos2ivARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2ivARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos2svARB)) +GL_PREFIX(WindowPos2svARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos2svARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3dARB)) +GL_PREFIX(WindowPos3dARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3dARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3fARB)) +GL_PREFIX(WindowPos3fARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3fARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3iARB)) +GL_PREFIX(WindowPos3iARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3iARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3sARB)) +GL_PREFIX(WindowPos3sARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3sARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3dvARB)) +GL_PREFIX(WindowPos3dvARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3dvARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3fvARB)) +GL_PREFIX(WindowPos3fvARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3fvARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3ivARB)) +GL_PREFIX(WindowPos3ivARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3ivARB)) + +ALIGNTEXT16 +GLOBL_FN(GL_PREFIX(WindowPos3svARB)) +GL_PREFIX(WindowPos3svARB): + MOV_L(GLNAME(_glapi_Dispatch), EAX) + JMP(GL_OFFSET(_gloffset_WindowPos3svARB)) + #endif /* __WIN32__ */ |