diff options
author | Brian Paul <[email protected]> | 2003-01-14 04:49:07 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-01-14 04:49:07 +0000 |
commit | 3c5bfac63bcbc4028c552fe74d904e6a3416ff36 (patch) | |
tree | b6bda8011e2087d521be2c6481a414d06836849f /src/mesa/drivers/x11/realglx.c | |
parent | e1e446bf775a7f2ea93b4e54c7748ef603500977 (diff) |
initial code for render-to-texture
Diffstat (limited to 'src/mesa/drivers/x11/realglx.c')
-rw-r--r-- | src/mesa/drivers/x11/realglx.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/mesa/drivers/x11/realglx.c b/src/mesa/drivers/x11/realglx.c index 74998433665..8ce9720a8b3 100644 --- a/src/mesa/drivers/x11/realglx.c +++ b/src/mesa/drivers/x11/realglx.c @@ -1,10 +1,10 @@ -/* $Id: realglx.c,v 1.6 2002/10/08 23:16:27 brianp Exp $ */ +/* $Id: realglx.c,v 1.7 2003/01/14 04:49:07 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 5.1 * - * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -177,5 +177,10 @@ _real_GetGLXDispatchTable(void) /*** GLX_MESA_agp_offset ***/ glx.GetAGPOffsetMESA = _real_glXGetAGPOffsetMESA; + /*** GLX_ARB_render_texture ***/ + glx.BindTexImageARB = _real_glXBindTexImageARB; + glx.ReleaseTexImageARB = _real_glXReleaseTexImageARB; + glx.DrawableAttribARB = _real_glXDrawableAttribARB; + return &glx; } |