Searched defs:passthru (Results 1 - 4 of 4) sorted by relevance
| /xsrc/external/mit/xorg-server.old/dist/hw/xwin/glx/ |
| H A D | wglext.spec | 26 passthru: #ifndef WGL_ARB_pbuffer tag 27 passthru: DECLARE_HANDLE(HPBUFFERARB); tag 28 passthru: #endif tag 29 passthru: #ifndef WGL_EXT_pbuffer tag 30 passthru: DECLARE_HANDLE(HPBUFFEREXT); tag 31 passthru: #endif tag 32 passthru: #ifndef WGL_NV_present_video tag 33 passthru: DECLARE_HANDLE(HVIDEOOUTPUTDEVICENV); tag 34 passthru: #endif tag 35 passthru tag 36 passthru: DECLARE_HANDLE(HPVIDEODEV); tag 37 passthru: #endif tag 38 passthru: #ifndef WGL_NV_gpu_affinity tag 39 passthru: DECLARE_HANDLE(HPGPUNV); tag 40 passthru: DECLARE_HANDLE(HGPUNV); tag 41 passthru: tag 42 passthru: typedef struct _GPU_DEVICE { tag 43 passthru: DWORD cb; tag 44 passthru: CHAR DeviceName[32]; tag 45 passthru: CHAR DeviceString[128]; tag 46 passthru: DWORD Flags; tag 47 passthru: RECT rcVirtualScreen; tag 48 passthru: } GPU_DEVICE, *PGPU_DEVICE; tag 49 passthru: #endif tag 50 passthru: #ifndef WGL_NV_video_capture tag 51 passthru: DECLARE_HANDLE(HVIDEOINPUTDEVICENV); tag 52 passthru: #endif tag 53 passthru: tag [all...] |
| H A D | gl.spec | 120 passthru: #include <stddef.h> tag 122 passthru: #ifndef GL_VERSION_2_0 tag 123 passthru: /* GL type for program/shader text */ tag 124 passthru: typedef char GLchar; tag 125 passthru: #endif tag 126 passthru: tag 127 passthru: #ifndef GL_VERSION_1_5 tag 128 passthru: /* GL types for handling large vertex buffer objects */ tag 129 passthru: typedef ptrdiff_t GLintptr; tag 130 passthru tag 131 passthru: #endif tag 132 passthru: tag 133 passthru: #ifndef GL_ARB_vertex_buffer_object tag 134 passthru: /* GL types for handling large vertex buffer objects */ tag 135 passthru: typedef ptrdiff_t GLintptrARB; tag 136 passthru: typedef ptrdiff_t GLsizeiptrARB; tag 137 passthru: #endif tag 138 passthru: tag 139 passthru: #ifndef GL_ARB_shader_objects tag 140 passthru: /* GL types for program/shader text and shader object handles */ tag 141 passthru: typedef char GLcharARB; tag 142 passthru: typedef unsigned int GLhandleARB; tag 143 passthru: #endif tag 144 passthru: tag 145 passthru: /* GL type for "half" precision (s10e5) float data in host memory */ tag 146 passthru: #ifndef GL_ARB_half_float_pixel tag 147 passthru: typedef unsigned short GLhalfARB; tag 148 passthru: #endif tag 149 passthru: tag 150 passthru: #ifndef GL_NV_half_float tag 151 passthru: typedef unsigned short GLhalfNV; tag 152 passthru: #endif tag 153 passthru: tag 154 passthru: #ifndef GLEXT_64_TYPES_DEFINED tag 155 passthru: /* This code block is duplicated in glxext.h, so must be protected */ tag 156 passthru: #define GLEXT_64_TYPES_DEFINED tag 157 passthru: /* Define int32_t, int64_t, and uint64_t types for UST/MSC */ tag 158 passthru: /* (as used in the GL_EXT_timer_query extension). */ tag 159 passthru: #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L tag 160 passthru: #include <inttypes.h> tag 161 passthru: #elif defined(__sun__) || defined(__digital__) tag 162 passthru: #include <inttypes.h> tag 163 passthru: #if defined(__STDC__) tag 164 passthru: #if defined(__arch64__) || defined(_LP64) tag 165 passthru: typedef long int int64_t; tag 166 passthru: typedef unsigned long int uint64_t; tag 167 passthru: #else tag 168 passthru: typedef long long int int64_t; tag 169 passthru: typedef unsigned long long int uint64_t; tag 170 passthru: #endif /* __arch64__ */ tag 171 passthru: #endif /* __STDC__ */ tag 172 passthru: #elif defined( __VMS ) || defined(__sgi) tag 173 passthru: #include <inttypes.h> tag 174 passthru: #elif defined(__SCO__) || defined(__USLC__) tag 175 passthru: #include <stdint.h> tag 176 passthru: #elif defined(__UNIXOS2__) || defined(__SOL64__) tag 177 passthru: typedef long int int32_t; tag 178 passthru: typedef long long int int64_t; tag 179 passthru: typedef unsigned long long int uint64_t; tag 180 passthru: #elif defined(_WIN32) && defined(__GNUC__) tag 181 passthru: #include <stdint.h> tag 182 passthru: #elif defined(_WIN32) tag 183 passthru: typedef __int32 int32_t; tag 184 passthru: typedef __int64 int64_t; tag 185 passthru: typedef unsigned __int64 uint64_t; tag 186 passthru: #else tag 187 passthru: /* Fallback if nothing above works */ tag 188 passthru: #include <inttypes.h> tag 189 passthru: #endif tag 190 passthru: #endif tag 191 passthru: tag 192 passthru: #ifndef GL_EXT_timer_query tag 193 passthru: typedef int64_t GLint64EXT; tag 194 passthru: typedef uint64_t GLuint64EXT; tag 195 passthru: #endif tag 196 passthru: tag 197 passthru: #ifndef GL_ARB_sync tag 198 passthru: typedef int64_t GLint64; tag 199 passthru: typedef uint64_t GLuint64; tag 200 passthru: typedef struct __GLsync *GLsync; tag 201 passthru: #endif tag 202 passthru: tag 203 passthru: #ifndef GL_ARB_cl_event tag 204 passthru: /* These incomplete types let us declare types compatible with OpenCL's cl_context a tag 205 passthru: struct _cl_context; tag 206 passthru: struct _cl_event; tag 207 passthru: #endif tag 208 passthru: tag 209 passthru: #ifndef GL_ARB_debug_output tag 210 passthru: typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum se tag 211 passthru: #endif tag 212 passthru: tag 213 passthru: #ifndef GL_AMD_debug_output tag 214 passthru: typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLs tag 215 passthru: #endif tag 216 passthru: tag 217 passthru: #ifndef GL_NV_vdpau_interop tag 218 passthru: typedef GLintptr GLvdpauSurfaceNV; tag 219 passthru: #endif tag 220 passthru: tag 7717 passthru: /* OpenGL 3.0 also reuses entry points from these extensions: */ tag 7718 passthru: /* ARB_framebuffer_object */ tag 7719 passthru: /* ARB_map_buffer_range */ tag 7720 passthru: /* ARB_vertex_array_object */ tag 7805 passthru: /* OpenGL 3.1 also reuses entry points from these extensions: */ tag 7806 passthru: /* ARB_copy_buffer */ tag 7807 passthru: /* ARB_uniform_buffer_object */ tag 7874 passthru: /* OpenGL 3.2 also reuses entry points from these extensions: */ tag 7875 passthru: /* ARB_draw_elements_base_vertex */ tag 7876 passthru: /* ARB_provoking_vertex */ tag 7877 passthru: /* ARB_sync */ tag 7878 passthru: /* ARB_texture_multisample */ tag 7903 passthru: /* OpenGL 3.3 also reuses entry points from these extensions: */ tag 7904 passthru: /* ARB_blend_func_extended */ tag 7905 passthru: /* ARB_sampler_objects */ tag 7906 passthru: /* ARB_explicit_attrib_location, but it has none */ tag 7907 passthru: /* ARB_occlusion_query2 (no entry points) */ tag 7908 passthru: /* ARB_shader_bit_encoding (no entry points) */ tag 7909 passthru: /* ARB_texture_rgb10_a2ui (no entry points) */ tag 7910 passthru: /* ARB_texture_swizzle (no entry points) */ tag 7911 passthru: /* ARB_timer_query */ tag 7912 passthru: /* ARB_vertex_type_2_10_10_10_rev */ tag 7988 passthru: /* OpenGL 4.0 also reuses entry points from these extensions: */ tag 7989 passthru: /* ARB_texture_query_lod (no entry points) */ tag 7990 passthru: /* ARB_draw_indirect */ tag 7991 passthru: /* ARB_gpu_shader5 (no entry points) */ tag 7992 passthru: /* ARB_gpu_shader_fp64 */ tag 7993 passthru: /* ARB_shader_subroutine */ tag 7994 passthru: /* ARB_tessellation_shader */ tag 7995 passthru: /* ARB_texture_buffer_object_rgb32 (no entry points) */ tag 7996 passthru: /* ARB_texture_cube_map_array (no entry points) */ tag 7997 passthru: /* ARB_texture_gather (no entry points) */ tag 7998 passthru: /* ARB_transform_feedback2 */ tag 7999 passthru: /* ARB_transform_feedback3 */ tag 8013 passthru: /* OpenGL 4.1 also reuses entry points from these extensions: */ tag 8014 passthru: /* ARB_ES2_compatibility */ tag 8015 passthru: /* ARB_get_program_binary */ tag 8016 passthru: /* ARB_separate_shader_objects */ tag 8017 passthru: /* ARB_shader_precision (no entry points) */ tag 8018 passthru: /* ARB_vertex_attrib_64bit */ tag 8019 passthru: /* ARB_viewport_array */ tag 9763 passthru: /* All ARB_fragment_program entry points are shared with ARB_vertex_program. */ tag 23111 passthru: /* This is really a WGL extension, but defines some associated GL enums. tag 23112 passthru: * ATI does not export "GL_ATI_pixel_format_float" in the GL_EXTENSIONS string. tag 23113 passthru: */ tag 23157 passthru: /* Some NV_fragment_program entry points are shared with ARB_vertex_program. */ tag [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_gather.c | 334 LLVMValueRef passthru = LLVMGetUndef(src_vec_type); local in function:lp_build_gather_avx2 370 LLVMValueRef passthru = LLVMGetUndef(src_vec_type); local in function:lp_build_gather_avx2
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_gather.c | 334 LLVMValueRef passthru = LLVMGetUndef(src_vec_type); local in function:lp_build_gather_avx2 370 LLVMValueRef passthru = LLVMGetUndef(src_vec_type); local in function:lp_build_gather_avx2
|
Completed in 11 milliseconds