~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to hw/xwin/glx/wglext.spec

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
required-props:
13
13
param:          retval retained
14
 
category:       wgl ARB_buffer_region ARB_extensions_string ARB_pixel_format ARB_make_current_read ARB_pbuffer ARB_render_texture ARB_pixel_format_float EXT_display_color_table EXT_extensions_string EXT_make_current_read EXT_pbuffer EXT_pixel_format EXT_swap_control OML_sync_control I3D_digital_video_control I3D_gamma I3D_genlock I3D_image_buffer I3D_swap_frame_lock I3D_swap_frame_usage NV_vertex_array_range 3DL_stereo_control NV_swap_group NV_video_output NV_present_video ARB_create_context NV_gpu_affinity AMD_gpu_association NV_video_capture NV_copy_image ARB_framebuffer_sRGB
 
14
category:       wgl ARB_buffer_region ARB_extensions_string ARB_pixel_format ARB_make_current_read ARB_pbuffer ARB_render_texture ARB_pixel_format_float EXT_display_color_table EXT_extensions_string EXT_make_current_read EXT_pbuffer EXT_pixel_format EXT_swap_control OML_sync_control I3D_digital_video_control I3D_gamma I3D_genlock I3D_image_buffer I3D_swap_frame_lock I3D_swap_frame_usage NV_vertex_array_range 3DL_stereo_control NV_swap_group NV_video_output NV_present_video ARB_create_context NV_gpu_affinity AMD_gpu_association NV_video_capture NV_copy_image ARB_framebuffer_sRGB NV_DX_interop
15
15
# required-props in wgl.spec (which is not used for anything):
16
16
# dlflags:        notlistable handcode
17
17
# wglflags:       client-handcode server-handcode non-dispatch
1124
1124
 
1125
1125
# (none)
1126
1126
newcategory: NV_multisample_coverage
 
1127
 
 
1128
###############################################################################
 
1129
#
 
1130
# Extension #407
 
1131
# NV_DX_interop commands
 
1132
#
 
1133
###############################################################################
 
1134
 
 
1135
DXSetResourceShareHandleNV(dxObject, shareHandle)
 
1136
        return          BOOL
 
1137
        param           dxObject        void out array [1]
 
1138
        param           shareHandle     HANDLE in value
 
1139
        category        NV_DX_interop
 
1140
 
 
1141
DXOpenDeviceNV(dxDevice)
 
1142
        return          HANDLE
 
1143
        param           dxDevice        void out array [1]
 
1144
        category        NV_DX_interop
 
1145
 
 
1146
DXCloseDeviceNV(hDevice)
 
1147
        return          BOOL
 
1148
        param           hDevice         HANDLE in value
 
1149
        category        NV_DX_interop
 
1150
 
 
1151
DXRegisterObjectNV(hDevice, dxObject, name, type, access)
 
1152
        return          HANDLE
 
1153
        param           hDevice         HANDLE in value
 
1154
        param           dxObject        void out array [1]
 
1155
        param           name            GLuint in value
 
1156
        param           type            GLenum in value
 
1157
        param           access          GLenum in value
 
1158
        category        NV_DX_interop
 
1159
 
 
1160
DXUnregisterObjectNV(hDevice, hObject)
 
1161
        return          BOOL
 
1162
        param           hDevice         HANDLE in value
 
1163
        param           hObject         HANDLE in value
 
1164
        category        NV_DX_interop
 
1165
 
 
1166
DXObjectAccessNV(hObject, access)
 
1167
        return          BOOL
 
1168
        param           hObject         HANDLE in value
 
1169
        param           access          GLenum in value
 
1170
        category        NV_DX_interop
 
1171
 
 
1172
DXLockObjectsNV(hDevice, count, hObjects)
 
1173
        return          BOOL
 
1174
        param           hDevice         HANDLE in value
 
1175
        param           count           GLint in value
 
1176
        param           hObjects        HANDLE out array [count]
 
1177
        category        NV_DX_interop
 
1178
 
 
1179
DXUnlockObjectsNV(hDevice, count, hObjects)
 
1180
        return          BOOL
 
1181
        param           hDevice         HANDLE in value
 
1182
        param           count           GLint in value
 
1183
        param           hObjects        HANDLE out array [count]
 
1184
        category        NV_DX_interop
 
1185