├── .dir-locals.el ├── .gitattributes ├── .gitignore ├── Android.common.mk ├── Android.mk ├── Makefile.am ├── SConstruct ├── VERSION ├── autogen.sh ├── bin ├── .cherry-ignore ├── .gitignore ├── bugzilla_mesa.sh ├── get-pick-list.sh ├── perf-annotate-jit └── shortlog_mesa.sh ├── common.py ├── configure.ac ├── docs ├── ARB_color_buffer_float.txt ├── COPYING ├── GL3.txt ├── README.UVD ├── README.WIN32 ├── VERSIONS ├── application-issues.html ├── autoconf.html ├── bugs.html ├── conform.html ├── contents.html ├── debugging.html ├── developers.html ├── devinfo.html ├── dispatch.html ├── download.html ├── egl.html ├── envvars.html ├── extensions.html ├── faq.html ├── gears.png ├── helpwanted.html ├── index.html ├── install.html ├── intro.html ├── libGL.txt ├── license.html ├── lists.html ├── llvmpipe.html ├── mangling.html ├── mesa.css ├── opengles.html ├── openvg.html ├── osmesa.html ├── patents.txt ├── perf.html ├── postprocess.html ├── precompiled.html ├── relnotes.html ├── relnotes │ ├── 10.0.1.html │ ├── 10.0.2.html │ ├── 10.0.html │ ├── 10.1.1.html │ ├── 10.1.2.html │ ├── 10.1.3.html │ ├── 10.1.4.html │ ├── 10.1.5.html │ ├── 10.1.6.html │ ├── 10.1.html │ ├── 3.1 │ ├── 3.2 │ ├── 3.2.1 │ ├── 3.3 │ ├── 3.4 │ ├── 3.4.1 │ ├── 3.4.2 │ ├── 3.5 │ ├── 4.0 │ ├── 4.0.1 │ ├── 4.0.2 │ ├── 4.0.3 │ ├── 4.1 │ ├── 5.0 │ ├── 5.0.1 │ ├── 5.0.2 │ ├── 5.1 │ ├── 6.0 │ ├── 6.0.1 │ ├── 6.1 │ ├── 6.2 │ ├── 6.2.1 │ ├── 6.3 │ ├── 6.3.1 │ ├── 6.3.2 │ ├── 6.4 │ ├── 6.4.1.html │ ├── 6.4.2.html │ ├── 6.4.html │ ├── 6.5.1.html │ ├── 6.5.2.html │ ├── 6.5.3.html │ ├── 6.5.html │ ├── 7.0.1.html │ ├── 7.0.2.html │ ├── 7.0.3.html │ ├── 7.0.4.html │ ├── 7.0.html │ ├── 7.1.html │ ├── 7.10.1.html │ ├── 7.10.2.html │ ├── 7.10.3.html │ ├── 7.10.html │ ├── 7.11.1.html │ ├── 7.11.2.html │ ├── 7.11.html │ ├── 7.2.html │ ├── 7.3.html │ ├── 7.4.1.html │ ├── 7.4.2.html │ ├── 7.4.3.html │ ├── 7.4.4.html │ ├── 7.4.html │ ├── 7.5.1.html │ ├── 7.5.2.html │ ├── 7.5.html │ ├── 7.6.1.html │ ├── 7.6.html │ ├── 7.7.1.html │ ├── 7.7.html │ ├── 7.8.1.html │ ├── 7.8.2.html │ ├── 7.8.3.html │ ├── 7.8.html │ ├── 7.9.1.html │ ├── 7.9.2.html │ ├── 7.9.html │ ├── 8.0.1.html │ ├── 8.0.2.html │ ├── 8.0.3.html │ ├── 8.0.4.html │ ├── 8.0.5.html │ ├── 8.0.html │ ├── 9.0.1.html │ ├── 9.0.2.html │ ├── 9.0.3.html │ ├── 9.0.html │ ├── 9.1.1.html │ ├── 9.1.2.html │ ├── 9.1.3.html │ ├── 9.1.4.html │ ├── 9.1.5.html │ ├── 9.1.6.html │ ├── 9.1.7.html │ ├── 9.1.html │ ├── 9.2.1.html │ ├── 9.2.2.html │ ├── 9.2.3.html │ ├── 9.2.4.html │ ├── 9.2.5.html │ └── 9.2.html ├── repository.html ├── shading.html ├── sourcedocs.html ├── sourcetree.html ├── specs │ ├── EXT_shader_integer_mix.spec │ ├── MESA_agp_offset.spec │ ├── MESA_copy_sub_buffer.spec │ ├── MESA_drm_image.spec │ ├── MESA_multithread_makecurrent.spec │ ├── MESA_pack_invert.spec │ ├── MESA_pixmap_colormap.spec │ ├── MESA_query_renderer.spec │ ├── MESA_release_buffers.spec │ ├── MESA_set_3dfx_mode.spec │ ├── MESA_shader_debug.spec │ ├── MESA_swap_control.spec │ ├── MESA_swap_frame_usage.spec │ ├── MESA_texture_array.spec │ ├── MESA_texture_signed_rgba.spec │ ├── MESA_window_pos.spec │ ├── MESA_ycbcr_texture.spec │ ├── OLD │ │ ├── MESA_packed_depth_stencil.spec │ │ ├── MESA_program_debug.spec │ │ ├── MESA_resize_buffers.spec │ │ ├── MESA_sprite_point.spec │ │ └── MESA_trace.spec │ ├── WL_bind_wayland_display.spec │ ├── WL_create_wayland_buffer_from_image.spec │ └── enums.txt ├── systems.html ├── thanks.html ├── utilities.html ├── versions.html ├── viewperf.html ├── vmware-guest.html ├── webmaster.html └── xlibdriver.html ├── doxygen ├── .gitignore ├── Makefile ├── README ├── common.doxy ├── core_subset.doxy ├── doxy.bat ├── gallium.doc ├── gallium.doxy ├── gbm.doxy ├── glapi.doxy ├── glsl.doxy ├── header.html ├── header_subset.html ├── i965.doxy ├── main.doxy ├── math.doxy ├── math_subset.doxy ├── radeon_subset.doxy ├── shader.doxy ├── swrast.doxy ├── swrast_setup.doxy ├── tnl.doxy ├── tnl_dd.doxy └── vbo.doxy ├── include ├── CL │ ├── cl.h │ ├── cl.hpp │ ├── cl_ext.h │ ├── cl_gl.h │ ├── cl_gl_ext.h │ ├── cl_platform.h │ └── opencl.h ├── EGL │ ├── egl.h │ ├── eglext.h │ ├── eglmesaext.h │ └── eglplatform.h ├── GL │ ├── gl.h │ ├── gl_mangle.h │ ├── glext.h │ ├── glx.h │ ├── glx_mangle.h │ ├── glxext.h │ ├── internal │ │ ├── dri_interface.h │ │ └── sarea.h │ ├── osmesa.h │ ├── wglext.h │ └── wmesa.h ├── GLES │ ├── egl.h │ ├── gl.h │ ├── glext.h │ └── glplatform.h ├── GLES2 │ ├── gl2.h │ ├── gl2ext.h │ └── gl2platform.h ├── GLES3 │ ├── gl3.h │ ├── gl3ext.h │ └── gl3platform.h ├── HaikuGL │ ├── GLRenderer.h │ ├── GLView.h │ ├── OpenGLKit.h │ └── README ├── KHR │ └── khrplatform.h ├── VG │ ├── openvg.h │ ├── vgext.h │ ├── vgplatform.h │ └── vgu.h ├── c11 │ ├── threads.h │ ├── threads_posix.h │ └── threads_win32.h ├── c99 │ ├── inttypes.h │ ├── stdbool.h │ └── stdint.h ├── c99_compat.h └── pci_ids │ ├── i810_pci_ids.h │ ├── i915_pci_ids.h │ ├── i965_pci_ids.h │ ├── r200_pci_ids.h │ ├── r300_pci_ids.h │ ├── r600_pci_ids.h │ ├── radeon_pci_ids.h │ ├── radeonsi_pci_ids.h │ └── vmwgfx_pci_ids.h ├── install-lib-links.mk ├── m4 ├── .gitignore ├── ax_check_compile_flag.m4 ├── ax_prog_bison.m4 ├── ax_prog_flex.m4 ├── ax_pthread.m4 └── ax_python_module.m4 ├── scons ├── crossmingw.py ├── custom.py ├── dxsdk.py ├── fixes.py ├── gallium.py ├── llvm.py ├── source_list.py └── x11.py └── src ├── Makefile.am ├── SConscript ├── egl ├── Makefile.am ├── docs │ └── EGL_MESA_screen_surface ├── drivers │ ├── Makefile.am │ ├── dri2 │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── egl_dri2.c │ │ ├── egl_dri2.h │ │ ├── platform_android.c │ │ ├── platform_drm.c │ │ ├── platform_wayland.c │ │ └── platform_x11.c │ └── glx │ │ ├── Makefile.am │ │ └── egl_glx.c ├── main │ ├── Android.mk │ ├── Makefile.am │ ├── README.txt │ ├── SConscript │ ├── egl.def │ ├── egl.pc.in │ ├── eglapi.c │ ├── eglapi.h │ ├── eglarray.c │ ├── eglarray.h │ ├── eglcompiler.h │ ├── eglconfig.c │ ├── eglconfig.h │ ├── eglcontext.c │ ├── eglcontext.h │ ├── eglcurrent.c │ ├── eglcurrent.h │ ├── egldefines.h │ ├── egldisplay.c │ ├── egldisplay.h │ ├── egldriver.c │ ├── egldriver.h │ ├── eglfallbacks.c │ ├── eglglobals.c │ ├── eglglobals.h │ ├── eglimage.c │ ├── eglimage.h │ ├── egllog.c │ ├── egllog.h │ ├── eglmisc.c │ ├── eglmisc.h │ ├── eglmode.c │ ├── eglmode.h │ ├── eglmutex.h │ ├── eglscreen.c │ ├── eglscreen.h │ ├── eglstring.c │ ├── eglstring.h │ ├── eglsurface.c │ ├── eglsurface.h │ ├── eglsync.c │ ├── eglsync.h │ └── egltypedefs.h └── wayland │ ├── .gitignore │ ├── Makefile.am │ ├── wayland-drm │ ├── Makefile.am │ ├── wayland-drm.c │ ├── wayland-drm.h │ └── wayland-drm.xml │ └── wayland-egl │ ├── Makefile.am │ ├── wayland-egl-priv.h │ ├── wayland-egl.c │ └── wayland-egl.pc.in ├── gallium ├── Android.common.mk ├── Android.mk ├── Automake.inc ├── README.portability ├── SConscript ├── auxiliary │ ├── Android.mk │ ├── Makefile.am │ ├── Makefile.sources │ ├── SConscript │ ├── cso_cache │ │ ├── cso_cache.c │ │ ├── cso_cache.h │ │ ├── cso_context.c │ │ ├── cso_context.h │ │ ├── cso_hash.c │ │ └── cso_hash.h │ ├── draw │ │ ├── draw_cliptest_tmp.h │ │ ├── draw_context.c │ │ ├── draw_context.h │ │ ├── draw_decompose_tmp.h │ │ ├── draw_fs.c │ │ ├── draw_fs.h │ │ ├── draw_gs.c │ │ ├── draw_gs.h │ │ ├── draw_gs_tmp.h │ │ ├── draw_llvm.c │ │ ├── draw_llvm.h │ │ ├── draw_llvm_sample.c │ │ ├── draw_pipe.c │ │ ├── draw_pipe.h │ │ ├── draw_pipe_aaline.c │ │ ├── draw_pipe_aapoint.c │ │ ├── draw_pipe_clip.c │ │ ├── draw_pipe_cull.c │ │ ├── draw_pipe_flatshade.c │ │ ├── draw_pipe_offset.c │ │ ├── draw_pipe_pstipple.c │ │ ├── draw_pipe_stipple.c │ │ ├── draw_pipe_twoside.c │ │ ├── draw_pipe_unfilled.c │ │ ├── draw_pipe_util.c │ │ ├── draw_pipe_validate.c │ │ ├── draw_pipe_vbuf.c │ │ ├── draw_pipe_wide_line.c │ │ ├── draw_pipe_wide_point.c │ │ ├── draw_prim_assembler.c │ │ ├── draw_prim_assembler.h │ │ ├── draw_prim_assembler_tmp.h │ │ ├── draw_private.h │ │ ├── draw_pt.c │ │ ├── draw_pt.h │ │ ├── draw_pt_decompose.h │ │ ├── draw_pt_emit.c │ │ ├── draw_pt_fetch.c │ │ ├── draw_pt_fetch_emit.c │ │ ├── draw_pt_fetch_shade_emit.c │ │ ├── draw_pt_fetch_shade_pipeline.c │ │ ├── draw_pt_fetch_shade_pipeline_llvm.c │ │ ├── draw_pt_post_vs.c │ │ ├── draw_pt_so_emit.c │ │ ├── draw_pt_util.c │ │ ├── draw_pt_vsplit.c │ │ ├── draw_pt_vsplit_tmp.h │ │ ├── draw_so_emit_tmp.h │ │ ├── draw_split_tmp.h │ │ ├── draw_vbuf.h │ │ ├── draw_vertex.c │ │ ├── draw_vertex.h │ │ ├── draw_vs.c │ │ ├── draw_vs.h │ │ ├── draw_vs_exec.c │ │ ├── draw_vs_llvm.c │ │ └── draw_vs_variant.c │ ├── gallivm │ │ ├── f.cpp │ │ ├── lp_bld.h │ │ ├── lp_bld_arit.c │ │ ├── lp_bld_arit.h │ │ ├── lp_bld_arit_overflow.c │ │ ├── lp_bld_arit_overflow.h │ │ ├── lp_bld_assert.c │ │ ├── lp_bld_assert.h │ │ ├── lp_bld_bitarit.c │ │ ├── lp_bld_bitarit.h │ │ ├── lp_bld_const.c │ │ ├── lp_bld_const.h │ │ ├── lp_bld_conv.c │ │ ├── lp_bld_conv.h │ │ ├── lp_bld_debug.cpp │ │ ├── lp_bld_debug.h │ │ ├── lp_bld_flow.c │ │ ├── lp_bld_flow.h │ │ ├── lp_bld_format.h │ │ ├── lp_bld_format_aos.c │ │ ├── lp_bld_format_aos_array.c │ │ ├── lp_bld_format_float.c │ │ ├── lp_bld_format_soa.c │ │ ├── lp_bld_format_srgb.c │ │ ├── lp_bld_format_yuv.c │ │ ├── lp_bld_gather.c │ │ ├── lp_bld_gather.h │ │ ├── lp_bld_init.c │ │ ├── lp_bld_init.h │ │ ├── lp_bld_intr.c │ │ ├── lp_bld_intr.h │ │ ├── lp_bld_limits.h │ │ ├── lp_bld_logic.c │ │ ├── lp_bld_logic.h │ │ ├── lp_bld_misc.cpp │ │ ├── lp_bld_misc.h │ │ ├── lp_bld_pack.c │ │ ├── lp_bld_pack.h │ │ ├── lp_bld_printf.c │ │ ├── lp_bld_printf.h │ │ ├── lp_bld_quad.c │ │ ├── lp_bld_quad.h │ │ ├── lp_bld_sample.c │ │ ├── lp_bld_sample.h │ │ ├── lp_bld_sample_aos.c │ │ ├── lp_bld_sample_aos.h │ │ ├── lp_bld_sample_soa.c │ │ ├── lp_bld_struct.c │ │ ├── lp_bld_struct.h │ │ ├── lp_bld_swizzle.c │ │ ├── lp_bld_swizzle.h │ │ ├── lp_bld_tgsi.c │ │ ├── lp_bld_tgsi.h │ │ ├── lp_bld_tgsi_action.c │ │ ├── lp_bld_tgsi_action.h │ │ ├── lp_bld_tgsi_aos.c │ │ ├── lp_bld_tgsi_info.c │ │ ├── lp_bld_tgsi_soa.c │ │ ├── lp_bld_type.c │ │ └── lp_bld_type.h │ ├── hud │ │ ├── font.c │ │ ├── font.h │ │ ├── hud_context.c │ │ ├── hud_context.h │ │ ├── hud_cpu.c │ │ ├── hud_driver_query.c │ │ ├── hud_fps.c │ │ └── hud_private.h │ ├── indices │ │ ├── .gitignore │ │ ├── u_indices.c │ │ ├── u_indices.h │ │ ├── u_indices_gen.py │ │ ├── u_indices_priv.h │ │ ├── u_primconvert.c │ │ ├── u_primconvert.h │ │ ├── u_unfilled_gen.py │ │ └── u_unfilled_indices.c │ ├── os │ │ ├── os_memory.h │ │ ├── os_memory_aligned.h │ │ ├── os_memory_debug.h │ │ ├── os_memory_stdc.h │ │ ├── os_misc.c │ │ ├── os_misc.h │ │ ├── os_mman.h │ │ ├── os_process.c │ │ ├── os_process.h │ │ ├── os_thread.h │ │ ├── os_time.c │ │ └── os_time.h │ ├── pipe-loader │ │ ├── Makefile.am │ │ ├── pipe_loader.c │ │ ├── pipe_loader.h │ │ ├── pipe_loader_drm.c │ │ ├── pipe_loader_priv.h │ │ └── pipe_loader_sw.c │ ├── pipebuffer │ │ ├── pb_buffer.h │ │ ├── pb_buffer_fenced.c │ │ ├── pb_buffer_fenced.h │ │ ├── pb_buffer_malloc.c │ │ ├── pb_bufmgr.h │ │ ├── pb_bufmgr_alt.c │ │ ├── pb_bufmgr_cache.c │ │ ├── pb_bufmgr_debug.c │ │ ├── pb_bufmgr_mm.c │ │ ├── pb_bufmgr_ondemand.c │ │ ├── pb_bufmgr_pool.c │ │ ├── pb_bufmgr_slab.c │ │ ├── pb_validate.c │ │ └── pb_validate.h │ ├── postprocess │ │ ├── ADDING │ │ ├── filters.h │ │ ├── postprocess.h │ │ ├── pp_celshade.c │ │ ├── pp_celshade.h │ │ ├── pp_colors.c │ │ ├── pp_colors.h │ │ ├── pp_filters.h │ │ ├── pp_init.c │ │ ├── pp_mlaa.c │ │ ├── pp_mlaa.h │ │ ├── pp_mlaa_areamap.h │ │ ├── pp_private.h │ │ ├── pp_program.c │ │ └── pp_run.c │ ├── rbug │ │ ├── README │ │ ├── rbug.h │ │ ├── rbug_connection.c │ │ ├── rbug_connection.h │ │ ├── rbug_context.c │ │ ├── rbug_context.h │ │ ├── rbug_core.c │ │ ├── rbug_core.h │ │ ├── rbug_demarshal.c │ │ ├── rbug_internal.h │ │ ├── rbug_proto.h │ │ ├── rbug_shader.c │ │ ├── rbug_shader.h │ │ ├── rbug_texture.c │ │ └── rbug_texture.h │ ├── rtasm │ │ ├── rtasm_cpu.c │ │ ├── rtasm_cpu.h │ │ ├── rtasm_execmem.c │ │ ├── rtasm_execmem.h │ │ ├── rtasm_x86sse.c │ │ └── rtasm_x86sse.h │ ├── target-helpers │ │ ├── inline_debug_helper.h │ │ ├── inline_sw_helper.h │ │ └── inline_wrapper_sw_helper.h │ ├── tgsi │ │ ├── tgsi_build.c │ │ ├── tgsi_build.h │ │ ├── tgsi_dump.c │ │ ├── tgsi_dump.h │ │ ├── tgsi_exec.c │ │ ├── tgsi_exec.h │ │ ├── tgsi_info.c │ │ ├── tgsi_info.h │ │ ├── tgsi_iterate.c │ │ ├── tgsi_iterate.h │ │ ├── tgsi_opcode_tmp.h │ │ ├── tgsi_parse.c │ │ ├── tgsi_parse.h │ │ ├── tgsi_sanity.c │ │ ├── tgsi_sanity.h │ │ ├── tgsi_scan.c │ │ ├── tgsi_scan.h │ │ ├── tgsi_strings.c │ │ ├── tgsi_strings.h │ │ ├── tgsi_text.c │ │ ├── tgsi_text.h │ │ ├── tgsi_transform.c │ │ ├── tgsi_transform.h │ │ ├── tgsi_ureg.c │ │ ├── tgsi_ureg.h │ │ ├── tgsi_util.c │ │ └── tgsi_util.h │ ├── translate │ │ ├── translate.c │ │ ├── translate.h │ │ ├── translate_cache.c │ │ ├── translate_cache.h │ │ ├── translate_generic.c │ │ └── translate_sse.c │ ├── util │ │ ├── .gitignore │ │ ├── dbghelp.h │ │ ├── u_atomic.h │ │ ├── u_bitmask.c │ │ ├── u_bitmask.h │ │ ├── u_blit.c │ │ ├── u_blit.h │ │ ├── u_blitter.c │ │ ├── u_blitter.h │ │ ├── u_box.h │ │ ├── u_cache.c │ │ ├── u_cache.h │ │ ├── u_caps.c │ │ ├── u_caps.h │ │ ├── u_clear.h │ │ ├── u_cpu_detect.c │ │ ├── u_cpu_detect.h │ │ ├── u_debug.c │ │ ├── u_debug.h │ │ ├── u_debug_describe.c │ │ ├── u_debug_describe.h │ │ ├── u_debug_flush.c │ │ ├── u_debug_flush.h │ │ ├── u_debug_memory.c │ │ ├── u_debug_refcnt.c │ │ ├── u_debug_refcnt.h │ │ ├── u_debug_stack.c │ │ ├── u_debug_stack.h │ │ ├── u_debug_symbol.c │ │ ├── u_debug_symbol.h │ │ ├── u_dirty_flags.h │ │ ├── u_dirty_surfaces.h │ │ ├── u_dl.c │ │ ├── u_dl.h │ │ ├── u_double_list.h │ │ ├── u_draw.c │ │ ├── u_draw.h │ │ ├── u_draw_quad.c │ │ ├── u_draw_quad.h │ │ ├── u_dual_blend.h │ │ ├── u_dump.h │ │ ├── u_dump_defines.c │ │ ├── u_dump_state.c │ │ ├── u_dynarray.h │ │ ├── u_fifo.h │ │ ├── u_format.c │ │ ├── u_format.csv │ │ ├── u_format.h │ │ ├── u_format_etc.c │ │ ├── u_format_etc.h │ │ ├── u_format_latc.c │ │ ├── u_format_latc.h │ │ ├── u_format_other.c │ │ ├── u_format_other.h │ │ ├── u_format_pack.py │ │ ├── u_format_parse.py │ │ ├── u_format_r11g11b10f.h │ │ ├── u_format_rgb9e5.h │ │ ├── u_format_rgtc.c │ │ ├── u_format_rgtc.h │ │ ├── u_format_s3tc.c │ │ ├── u_format_s3tc.h │ │ ├── u_format_srgb.h │ │ ├── u_format_srgb.py │ │ ├── u_format_table.py │ │ ├── u_format_tests.c │ │ ├── u_format_tests.h │ │ ├── u_format_yuv.c │ │ ├── u_format_yuv.h │ │ ├── u_format_zs.c │ │ ├── u_format_zs.h │ │ ├── u_framebuffer.c │ │ ├── u_framebuffer.h │ │ ├── u_gen_mipmap.c │ │ ├── u_gen_mipmap.h │ │ ├── u_half.h │ │ ├── u_handle_table.c │ │ ├── u_handle_table.h │ │ ├── u_hash.c │ │ ├── u_hash.h │ │ ├── u_hash_table.c │ │ ├── u_hash_table.h │ │ ├── u_helpers.c │ │ ├── u_helpers.h │ │ ├── u_index_modify.c │ │ ├── u_index_modify.h │ │ ├── u_init.h │ │ ├── u_inlines.h │ │ ├── u_keymap.c │ │ ├── u_keymap.h │ │ ├── u_linear.c │ │ ├── u_linear.h │ │ ├── u_linkage.c │ │ ├── u_linkage.h │ │ ├── u_math.c │ │ ├── u_math.h │ │ ├── u_memory.h │ │ ├── u_mm.c │ │ ├── u_mm.h │ │ ├── u_network.c │ │ ├── u_network.h │ │ ├── u_pack_color.h │ │ ├── u_pointer.h │ │ ├── u_prim.h │ │ ├── u_pstipple.c │ │ ├── u_pstipple.h │ │ ├── u_range.h │ │ ├── u_rect.h │ │ ├── u_resource.c │ │ ├── u_resource.h │ │ ├── u_ringbuffer.c │ │ ├── u_ringbuffer.h │ │ ├── u_sampler.c │ │ ├── u_sampler.h │ │ ├── u_simple_list.h │ │ ├── u_simple_shaders.c │ │ ├── u_simple_shaders.h │ │ ├── u_slab.c │ │ ├── u_slab.h │ │ ├── u_snprintf.c │ │ ├── u_split_prim.h │ │ ├── u_sse.h │ │ ├── u_staging.c │ │ ├── u_staging.h │ │ ├── u_string.h │ │ ├── u_suballoc.c │ │ ├── u_suballoc.h │ │ ├── u_surface.c │ │ ├── u_surface.h │ │ ├── u_surfaces.c │ │ ├── u_surfaces.h │ │ ├── u_texture.c │ │ ├── u_texture.h │ │ ├── u_tile.c │ │ ├── u_tile.h │ │ ├── u_time.h │ │ ├── u_transfer.c │ │ ├── u_transfer.h │ │ ├── u_upload_mgr.c │ │ ├── u_upload_mgr.h │ │ ├── u_vbuf.c │ │ ├── u_vbuf.h │ │ └── u_video.h │ └── vl │ │ ├── vl_compositor.c │ │ ├── vl_compositor.h │ │ ├── vl_csc.c │ │ ├── vl_csc.h │ │ ├── vl_decoder.c │ │ ├── vl_decoder.h │ │ ├── vl_defines.h │ │ ├── vl_idct.c │ │ ├── vl_idct.h │ │ ├── vl_matrix_filter.c │ │ ├── vl_matrix_filter.h │ │ ├── vl_mc.c │ │ ├── vl_mc.h │ │ ├── vl_median_filter.c │ │ ├── vl_median_filter.h │ │ ├── vl_mpeg12_bitstream.c │ │ ├── vl_mpeg12_bitstream.h │ │ ├── vl_mpeg12_decoder.c │ │ ├── vl_mpeg12_decoder.h │ │ ├── vl_types.h │ │ ├── vl_vertex_buffers.c │ │ ├── vl_vertex_buffers.h │ │ ├── vl_video_buffer.c │ │ ├── vl_video_buffer.h │ │ ├── vl_vlc.h │ │ ├── vl_winsys.h │ │ ├── vl_winsys_dri.c │ │ ├── vl_winsys_xsp.c │ │ ├── vl_zscan.c │ │ └── vl_zscan.h ├── docs │ ├── Makefile │ ├── d3d11ddi.txt │ ├── llvm-todo.txt │ ├── make.bat │ └── source │ │ ├── conf.py │ │ ├── context.rst │ │ ├── cso.rst │ │ ├── cso │ │ ├── blend.rst │ │ ├── dsa.rst │ │ ├── rasterizer.rst │ │ ├── sampler.rst │ │ ├── shader.rst │ │ └── velems.rst │ │ ├── debugging.rst │ │ ├── distro.rst │ │ ├── exts │ │ └── formatting.py │ │ ├── format.rst │ │ ├── glossary.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── pipeline.txt │ │ ├── resources.rst │ │ ├── screen.rst │ │ └── tgsi.rst ├── drivers │ ├── Makefile.am │ ├── freedreno │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── a2xx │ │ │ ├── a2xx.xml.h │ │ │ ├── disasm-a2xx.c │ │ │ ├── fd2_blend.c │ │ │ ├── fd2_blend.h │ │ │ ├── fd2_compiler.c │ │ │ ├── fd2_compiler.h │ │ │ ├── fd2_context.c │ │ │ ├── fd2_context.h │ │ │ ├── fd2_draw.c │ │ │ ├── fd2_draw.h │ │ │ ├── fd2_emit.c │ │ │ ├── fd2_emit.h │ │ │ ├── fd2_gmem.c │ │ │ ├── fd2_gmem.h │ │ │ ├── fd2_program.c │ │ │ ├── fd2_program.h │ │ │ ├── fd2_rasterizer.c │ │ │ ├── fd2_rasterizer.h │ │ │ ├── fd2_screen.c │ │ │ ├── fd2_screen.h │ │ │ ├── fd2_texture.c │ │ │ ├── fd2_texture.h │ │ │ ├── fd2_util.c │ │ │ ├── fd2_util.h │ │ │ ├── fd2_zsa.c │ │ │ ├── fd2_zsa.h │ │ │ ├── instr-a2xx.h │ │ │ ├── ir-a2xx.c │ │ │ └── ir-a2xx.h │ │ ├── a3xx │ │ │ ├── a3xx.xml.h │ │ │ ├── disasm-a3xx.c │ │ │ ├── fd3_blend.c │ │ │ ├── fd3_blend.h │ │ │ ├── fd3_compiler.c │ │ │ ├── fd3_compiler.h │ │ │ ├── fd3_context.c │ │ │ ├── fd3_context.h │ │ │ ├── fd3_draw.c │ │ │ ├── fd3_draw.h │ │ │ ├── fd3_emit.c │ │ │ ├── fd3_emit.h │ │ │ ├── fd3_gmem.c │ │ │ ├── fd3_gmem.h │ │ │ ├── fd3_program.c │ │ │ ├── fd3_program.h │ │ │ ├── fd3_rasterizer.c │ │ │ ├── fd3_rasterizer.h │ │ │ ├── fd3_screen.c │ │ │ ├── fd3_screen.h │ │ │ ├── fd3_texture.c │ │ │ ├── fd3_texture.h │ │ │ ├── fd3_util.c │ │ │ ├── fd3_util.h │ │ │ ├── fd3_zsa.c │ │ │ ├── fd3_zsa.h │ │ │ ├── instr-a3xx.h │ │ │ ├── ir-a3xx.c │ │ │ └── ir-a3xx.h │ │ ├── adreno_common.xml.h │ │ ├── adreno_pm4.xml.h │ │ ├── disasm.h │ │ ├── freedreno_context.c │ │ ├── freedreno_context.h │ │ ├── freedreno_draw.c │ │ ├── freedreno_draw.h │ │ ├── freedreno_fence.c │ │ ├── freedreno_fence.h │ │ ├── freedreno_gmem.c │ │ ├── freedreno_gmem.h │ │ ├── freedreno_lowering.c │ │ ├── freedreno_lowering.h │ │ ├── freedreno_query.c │ │ ├── freedreno_query.h │ │ ├── freedreno_resource.c │ │ ├── freedreno_resource.h │ │ ├── freedreno_screen.c │ │ ├── freedreno_screen.h │ │ ├── freedreno_state.c │ │ ├── freedreno_state.h │ │ ├── freedreno_surface.c │ │ ├── freedreno_surface.h │ │ ├── freedreno_texture.c │ │ ├── freedreno_texture.h │ │ ├── freedreno_util.c │ │ └── freedreno_util.h │ ├── galahad │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── glhd_context.c │ │ ├── glhd_context.h │ │ ├── glhd_objects.c │ │ ├── glhd_objects.h │ │ ├── glhd_public.h │ │ ├── glhd_screen.c │ │ └── glhd_screen.h │ ├── i915 │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── TODO │ │ ├── i915_batch.h │ │ ├── i915_batchbuffer.h │ │ ├── i915_blit.c │ │ ├── i915_blit.h │ │ ├── i915_clear.c │ │ ├── i915_context.c │ │ ├── i915_context.h │ │ ├── i915_debug.c │ │ ├── i915_debug.h │ │ ├── i915_debug_fp.c │ │ ├── i915_debug_private.h │ │ ├── i915_flush.c │ │ ├── i915_fpc.h │ │ ├── i915_fpc_emit.c │ │ ├── i915_fpc_optimize.c │ │ ├── i915_fpc_translate.c │ │ ├── i915_prim_emit.c │ │ ├── i915_prim_vbuf.c │ │ ├── i915_public.h │ │ ├── i915_query.c │ │ ├── i915_query.h │ │ ├── i915_reg.h │ │ ├── i915_resource.c │ │ ├── i915_resource.h │ │ ├── i915_resource_buffer.c │ │ ├── i915_resource_texture.c │ │ ├── i915_screen.c │ │ ├── i915_screen.h │ │ ├── i915_state.c │ │ ├── i915_state.h │ │ ├── i915_state_derived.c │ │ ├── i915_state_dynamic.c │ │ ├── i915_state_emit.c │ │ ├── i915_state_fpc.c │ │ ├── i915_state_immediate.c │ │ ├── i915_state_inlines.h │ │ ├── i915_state_sampler.c │ │ ├── i915_state_static.c │ │ ├── i915_surface.c │ │ ├── i915_surface.h │ │ └── i915_winsys.h │ ├── identity │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── id_context.c │ │ ├── id_context.h │ │ ├── id_objects.c │ │ ├── id_objects.h │ │ ├── id_public.h │ │ ├── id_screen.c │ │ └── id_screen.h │ ├── ilo │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── ilo_3d.c │ │ ├── ilo_3d.h │ │ ├── ilo_3d_pipeline.c │ │ ├── ilo_3d_pipeline.h │ │ ├── ilo_3d_pipeline_dump.c │ │ ├── ilo_3d_pipeline_gen6.c │ │ ├── ilo_3d_pipeline_gen6.h │ │ ├── ilo_3d_pipeline_gen7.c │ │ ├── ilo_3d_pipeline_gen7.h │ │ ├── ilo_blit.c │ │ ├── ilo_blit.h │ │ ├── ilo_blitter.c │ │ ├── ilo_blitter.h │ │ ├── ilo_blitter_blt.c │ │ ├── ilo_blitter_pipe.c │ │ ├── ilo_blitter_rectlist.c │ │ ├── ilo_common.h │ │ ├── ilo_context.c │ │ ├── ilo_context.h │ │ ├── ilo_cp.c │ │ ├── ilo_cp.h │ │ ├── ilo_format.c │ │ ├── ilo_format.h │ │ ├── ilo_gpe.h │ │ ├── ilo_gpe_gen6.c │ │ ├── ilo_gpe_gen6.h │ │ ├── ilo_gpe_gen7.c │ │ ├── ilo_gpe_gen7.h │ │ ├── ilo_gpgpu.c │ │ ├── ilo_gpgpu.h │ │ ├── ilo_public.h │ │ ├── ilo_query.c │ │ ├── ilo_query.h │ │ ├── ilo_resource.c │ │ ├── ilo_resource.h │ │ ├── ilo_screen.c │ │ ├── ilo_screen.h │ │ ├── ilo_shader.c │ │ ├── ilo_shader.h │ │ ├── ilo_state.c │ │ ├── ilo_state.h │ │ ├── ilo_transfer.c │ │ ├── ilo_transfer.h │ │ ├── ilo_video.c │ │ ├── ilo_video.h │ │ ├── include │ │ │ ├── brw_defines.h │ │ │ ├── brw_structs.h │ │ │ ├── intel_chipset.h │ │ │ └── intel_reg.h │ │ └── shader │ │ │ ├── ilo_shader_cs.c │ │ │ ├── ilo_shader_fs.c │ │ │ ├── ilo_shader_gs.c │ │ │ ├── ilo_shader_internal.h │ │ │ ├── ilo_shader_vs.c │ │ │ ├── toy_compiler.c │ │ │ ├── toy_compiler.h │ │ │ ├── toy_compiler_asm.c │ │ │ ├── toy_compiler_disasm.c │ │ │ ├── toy_compiler_reg.h │ │ │ ├── toy_helpers.h │ │ │ ├── toy_legalize.c │ │ │ ├── toy_legalize.h │ │ │ ├── toy_legalize_ra.c │ │ │ ├── toy_optimize.c │ │ │ ├── toy_optimize.h │ │ │ ├── toy_tgsi.c │ │ │ └── toy_tgsi.h │ ├── llvmpipe │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── lp_bld_alpha.c │ │ ├── lp_bld_alpha.h │ │ ├── lp_bld_blend.c │ │ ├── lp_bld_blend.h │ │ ├── lp_bld_blend_aos.c │ │ ├── lp_bld_blend_logicop.c │ │ ├── lp_bld_depth.c │ │ ├── lp_bld_depth.h │ │ ├── lp_bld_interp.c │ │ ├── lp_bld_interp.h │ │ ├── lp_clear.c │ │ ├── lp_clear.h │ │ ├── lp_context.c │ │ ├── lp_context.h │ │ ├── lp_debug.h │ │ ├── lp_draw_arrays.c │ │ ├── lp_fence.c │ │ ├── lp_fence.h │ │ ├── lp_flush.c │ │ ├── lp_flush.h │ │ ├── lp_jit.c │ │ ├── lp_jit.h │ │ ├── lp_limits.h │ │ ├── lp_memory.c │ │ ├── lp_memory.h │ │ ├── lp_perf.c │ │ ├── lp_perf.h │ │ ├── lp_public.h │ │ ├── lp_query.c │ │ ├── lp_query.h │ │ ├── lp_rast.c │ │ ├── lp_rast.h │ │ ├── lp_rast_debug.c │ │ ├── lp_rast_priv.h │ │ ├── lp_rast_tri.c │ │ ├── lp_rast_tri_tmp.h │ │ ├── lp_scene.c │ │ ├── lp_scene.h │ │ ├── lp_scene_queue.c │ │ ├── lp_scene_queue.h │ │ ├── lp_screen.c │ │ ├── lp_screen.h │ │ ├── lp_setup.c │ │ ├── lp_setup.h │ │ ├── lp_setup_context.h │ │ ├── lp_setup_line.c │ │ ├── lp_setup_point.c │ │ ├── lp_setup_tri.c │ │ ├── lp_setup_vbuf.c │ │ ├── lp_state.h │ │ ├── lp_state_blend.c │ │ ├── lp_state_clip.c │ │ ├── lp_state_derived.c │ │ ├── lp_state_fs.c │ │ ├── lp_state_fs.h │ │ ├── lp_state_gs.c │ │ ├── lp_state_rasterizer.c │ │ ├── lp_state_sampler.c │ │ ├── lp_state_setup.c │ │ ├── lp_state_setup.h │ │ ├── lp_state_so.c │ │ ├── lp_state_surface.c │ │ ├── lp_state_vertex.c │ │ ├── lp_state_vs.c │ │ ├── lp_surface.c │ │ ├── lp_surface.h │ │ ├── lp_test.h │ │ ├── lp_test_arit.c │ │ ├── lp_test_blend.c │ │ ├── lp_test_conv.c │ │ ├── lp_test_format.c │ │ ├── lp_test_main.c │ │ ├── lp_test_printf.c │ │ ├── lp_tex_sample.c │ │ ├── lp_tex_sample.h │ │ ├── lp_texture.c │ │ └── lp_texture.h │ ├── noop │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── noop_pipe.c │ │ ├── noop_public.h │ │ └── noop_state.c │ ├── nouveau │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── codegen │ │ │ ├── nv50_ir.cpp │ │ │ ├── nv50_ir.h │ │ │ ├── nv50_ir_bb.cpp │ │ │ ├── nv50_ir_build_util.cpp │ │ │ ├── nv50_ir_build_util.h │ │ │ ├── nv50_ir_driver.h │ │ │ ├── nv50_ir_emit_gk110.cpp │ │ │ ├── nv50_ir_emit_nv50.cpp │ │ │ ├── nv50_ir_emit_nvc0.cpp │ │ │ ├── nv50_ir_from_tgsi.cpp │ │ │ ├── nv50_ir_graph.cpp │ │ │ ├── nv50_ir_graph.h │ │ │ ├── nv50_ir_inlines.h │ │ │ ├── nv50_ir_lowering_nv50.cpp │ │ │ ├── nv50_ir_lowering_nvc0.cpp │ │ │ ├── nv50_ir_peephole.cpp │ │ │ ├── nv50_ir_print.cpp │ │ │ ├── nv50_ir_ra.cpp │ │ │ ├── nv50_ir_ssa.cpp │ │ │ ├── nv50_ir_target.cpp │ │ │ ├── nv50_ir_target.h │ │ │ ├── nv50_ir_target_nv50.cpp │ │ │ ├── nv50_ir_target_nv50.h │ │ │ ├── nv50_ir_target_nvc0.cpp │ │ │ ├── nv50_ir_target_nvc0.h │ │ │ ├── nv50_ir_util.cpp │ │ │ ├── nv50_ir_util.h │ │ │ ├── target_lib_nvc0.asm │ │ │ ├── target_lib_nvc0.asm.h │ │ │ ├── target_lib_nve4.asm │ │ │ ├── target_lib_nve4.asm.h │ │ │ └── target_lib_nvf0.asm.h │ │ ├── nouveau_buffer.c │ │ ├── nouveau_buffer.h │ │ ├── nouveau_context.h │ │ ├── nouveau_fence.c │ │ ├── nouveau_fence.h │ │ ├── nouveau_gldefs.h │ │ ├── nouveau_heap.c │ │ ├── nouveau_heap.h │ │ ├── nouveau_mm.c │ │ ├── nouveau_mm.h │ │ ├── nouveau_screen.c │ │ ├── nouveau_screen.h │ │ ├── nouveau_statebuf.h │ │ ├── nouveau_video.c │ │ ├── nouveau_video.h │ │ ├── nouveau_vp3_video.c │ │ ├── nouveau_vp3_video.h │ │ ├── nouveau_vp3_video_bsp.c │ │ ├── nouveau_vp3_video_vp.c │ │ ├── nouveau_winsys.h │ │ ├── nv17_mpeg.xml.h │ │ ├── nv30 │ │ │ ├── nv01_2d.xml.h │ │ │ ├── nv30-40_3d.xml.h │ │ │ ├── nv30_clear.c │ │ │ ├── nv30_context.c │ │ │ ├── nv30_context.h │ │ │ ├── nv30_draw.c │ │ │ ├── nv30_format.c │ │ │ ├── nv30_format.h │ │ │ ├── nv30_fragprog.c │ │ │ ├── nv30_fragtex.c │ │ │ ├── nv30_miptree.c │ │ │ ├── nv30_push.c │ │ │ ├── nv30_query.c │ │ │ ├── nv30_resource.c │ │ │ ├── nv30_resource.h │ │ │ ├── nv30_screen.c │ │ │ ├── nv30_screen.h │ │ │ ├── nv30_state.c │ │ │ ├── nv30_state.h │ │ │ ├── nv30_state_validate.c │ │ │ ├── nv30_texture.c │ │ │ ├── nv30_transfer.c │ │ │ ├── nv30_transfer.h │ │ │ ├── nv30_vbo.c │ │ │ ├── nv30_vertprog.c │ │ │ ├── nv30_vertprog.h │ │ │ ├── nv30_winsys.h │ │ │ ├── nv40_vertprog.h │ │ │ ├── nv40_verttex.c │ │ │ ├── nvfx_fragprog.c │ │ │ ├── nvfx_shader.h │ │ │ └── nvfx_vertprog.c │ │ ├── nv31_mpeg.xml.h │ │ ├── nv50 │ │ │ ├── nv50_2d.xml.h │ │ │ ├── nv50_3d.xml.h │ │ │ ├── nv50_3ddefs.xml.h │ │ │ ├── nv50_blit.h │ │ │ ├── nv50_context.c │ │ │ ├── nv50_context.h │ │ │ ├── nv50_debug.h │ │ │ ├── nv50_defs.xml.h │ │ │ ├── nv50_draw.c │ │ │ ├── nv50_formats.c │ │ │ ├── nv50_miptree.c │ │ │ ├── nv50_program.c │ │ │ ├── nv50_program.h │ │ │ ├── nv50_push.c │ │ │ ├── nv50_query.c │ │ │ ├── nv50_resource.c │ │ │ ├── nv50_resource.h │ │ │ ├── nv50_screen.c │ │ │ ├── nv50_screen.h │ │ │ ├── nv50_shader_state.c │ │ │ ├── nv50_state.c │ │ │ ├── nv50_state_validate.c │ │ │ ├── nv50_stateobj.h │ │ │ ├── nv50_stateobj_tex.h │ │ │ ├── nv50_surface.c │ │ │ ├── nv50_tex.c │ │ │ ├── nv50_texture.xml.h │ │ │ ├── nv50_transfer.c │ │ │ ├── nv50_transfer.h │ │ │ ├── nv50_vbo.c │ │ │ ├── nv50_winsys.h │ │ │ ├── nv84_video.c │ │ │ ├── nv84_video.h │ │ │ ├── nv84_video_bsp.c │ │ │ ├── nv84_video_vp.c │ │ │ ├── nv98_video.c │ │ │ ├── nv98_video.h │ │ │ ├── nv98_video_bsp.c │ │ │ ├── nv98_video_ppp.c │ │ │ └── nv98_video_vp.c │ │ ├── nv_m2mf.xml.h │ │ ├── nv_object.xml.h │ │ └── nvc0 │ │ │ ├── nvc0_2d.xml.h │ │ │ ├── nvc0_3d.xml.h │ │ │ ├── nvc0_3ddefs.xml.h │ │ │ ├── nvc0_compute.c │ │ │ ├── nvc0_compute.h │ │ │ ├── nvc0_compute.xml.h │ │ │ ├── nvc0_context.c │ │ │ ├── nvc0_context.h │ │ │ ├── nvc0_draw.c │ │ │ ├── nvc0_formats.c │ │ │ ├── nvc0_graph_macros.h │ │ │ ├── nvc0_m2mf.xml.h │ │ │ ├── nvc0_miptree.c │ │ │ ├── nvc0_program.c │ │ │ ├── nvc0_program.h │ │ │ ├── nvc0_push.c │ │ │ ├── nvc0_query.c │ │ │ ├── nvc0_resource.c │ │ │ ├── nvc0_resource.h │ │ │ ├── nvc0_screen.c │ │ │ ├── nvc0_screen.h │ │ │ ├── nvc0_shader_state.c │ │ │ ├── nvc0_state.c │ │ │ ├── nvc0_state_validate.c │ │ │ ├── nvc0_stateobj.h │ │ │ ├── nvc0_surface.c │ │ │ ├── nvc0_tex.c │ │ │ ├── nvc0_transfer.c │ │ │ ├── nvc0_vbo.c │ │ │ ├── nvc0_vbo_translate.c │ │ │ ├── nvc0_video.c │ │ │ ├── nvc0_video.h │ │ │ ├── nvc0_video_bsp.c │ │ │ ├── nvc0_video_ppp.c │ │ │ ├── nvc0_video_vp.c │ │ │ ├── nvc0_winsys.h │ │ │ ├── nve4_compute.c │ │ │ ├── nve4_compute.h │ │ │ ├── nve4_compute.xml.h │ │ │ └── nve4_p2mf.xml.h │ ├── r300 │ │ ├── .gitignore │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── compiler │ │ │ ├── memory_pool.c │ │ │ ├── memory_pool.h │ │ │ ├── r300_fragprog.c │ │ │ ├── r300_fragprog.h │ │ │ ├── r300_fragprog_emit.c │ │ │ ├── r300_fragprog_swizzle.c │ │ │ ├── r300_fragprog_swizzle.h │ │ │ ├── r3xx_fragprog.c │ │ │ ├── r3xx_vertprog.c │ │ │ ├── r3xx_vertprog_dump.c │ │ │ ├── r500_fragprog.c │ │ │ ├── r500_fragprog.h │ │ │ ├── r500_fragprog_emit.c │ │ │ ├── radeon_code.c │ │ │ ├── radeon_code.h │ │ │ ├── radeon_compiler.c │ │ │ ├── radeon_compiler.h │ │ │ ├── radeon_compiler_util.c │ │ │ ├── radeon_compiler_util.h │ │ │ ├── radeon_dataflow.c │ │ │ ├── radeon_dataflow.h │ │ │ ├── radeon_dataflow_deadcode.c │ │ │ ├── radeon_dataflow_swizzles.c │ │ │ ├── radeon_emulate_branches.c │ │ │ ├── radeon_emulate_branches.h │ │ │ ├── radeon_emulate_loops.c │ │ │ ├── radeon_emulate_loops.h │ │ │ ├── radeon_inline_literals.c │ │ │ ├── radeon_list.c │ │ │ ├── radeon_list.h │ │ │ ├── radeon_opcodes.c │ │ │ ├── radeon_opcodes.h │ │ │ ├── radeon_optimize.c │ │ │ ├── radeon_pair_dead_sources.c │ │ │ ├── radeon_pair_regalloc.c │ │ │ ├── radeon_pair_schedule.c │ │ │ ├── radeon_pair_translate.c │ │ │ ├── radeon_program.c │ │ │ ├── radeon_program.h │ │ │ ├── radeon_program_alu.c │ │ │ ├── radeon_program_alu.h │ │ │ ├── radeon_program_constants.h │ │ │ ├── radeon_program_pair.c │ │ │ ├── radeon_program_pair.h │ │ │ ├── radeon_program_print.c │ │ │ ├── radeon_program_tex.c │ │ │ ├── radeon_program_tex.h │ │ │ ├── radeon_regalloc.h │ │ │ ├── radeon_remove_constants.c │ │ │ ├── radeon_remove_constants.h │ │ │ ├── radeon_rename_regs.c │ │ │ ├── radeon_rename_regs.h │ │ │ ├── radeon_swizzle.h │ │ │ ├── radeon_variable.c │ │ │ ├── radeon_variable.h │ │ │ ├── radeon_vert_fc.c │ │ │ └── tests │ │ │ │ ├── omod_two_writers.test │ │ │ │ ├── r300_compiler_tests.c │ │ │ │ ├── r300_compiler_tests.h │ │ │ │ ├── radeon_compiler_optimize_tests.c │ │ │ │ ├── radeon_compiler_regalloc_tests.c │ │ │ │ ├── radeon_compiler_util_tests.c │ │ │ │ ├── rc_test_helpers.c │ │ │ │ ├── rc_test_helpers.h │ │ │ │ ├── regalloc_tex_1d_swizzle.test │ │ │ │ ├── unit_test.c │ │ │ │ └── unit_test.h │ │ ├── r300_blit.c │ │ ├── r300_cb.h │ │ ├── r300_chipset.c │ │ ├── r300_chipset.h │ │ ├── r300_context.c │ │ ├── r300_context.h │ │ ├── r300_cs.h │ │ ├── r300_debug.c │ │ ├── r300_defines.h │ │ ├── r300_emit.c │ │ ├── r300_emit.h │ │ ├── r300_flush.c │ │ ├── r300_fs.c │ │ ├── r300_fs.h │ │ ├── r300_hyperz.c │ │ ├── r300_public.h │ │ ├── r300_query.c │ │ ├── r300_reg.h │ │ ├── r300_render.c │ │ ├── r300_render_stencilref.c │ │ ├── r300_render_translate.c │ │ ├── r300_resource.c │ │ ├── r300_screen.c │ │ ├── r300_screen.h │ │ ├── r300_screen_buffer.c │ │ ├── r300_screen_buffer.h │ │ ├── r300_shader_semantics.h │ │ ├── r300_state.c │ │ ├── r300_state_derived.c │ │ ├── r300_state_inlines.h │ │ ├── r300_texture.c │ │ ├── r300_texture.h │ │ ├── r300_texture_desc.c │ │ ├── r300_texture_desc.h │ │ ├── r300_tgsi_to_rc.c │ │ ├── r300_tgsi_to_rc.h │ │ ├── r300_transfer.c │ │ ├── r300_transfer.h │ │ ├── r300_vs.c │ │ ├── r300_vs.h │ │ ├── r300_vs_draw.c │ │ ├── ralloc.c │ │ └── register_allocate.c │ ├── r600 │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── compute_memory_pool.c │ │ ├── compute_memory_pool.h │ │ ├── eg_asm.c │ │ ├── eg_sq.h │ │ ├── evergreen_compute.c │ │ ├── evergreen_compute.h │ │ ├── evergreen_compute_internal.h │ │ ├── evergreen_hw_context.c │ │ ├── evergreen_state.c │ │ ├── evergreend.h │ │ ├── r600_asm.c │ │ ├── r600_asm.h │ │ ├── r600_blit.c │ │ ├── r600_formats.h │ │ ├── r600_hw_context.c │ │ ├── r600_isa.c │ │ ├── r600_isa.h │ │ ├── r600_llvm.c │ │ ├── r600_llvm.h │ │ ├── r600_opcodes.h │ │ ├── r600_pipe.c │ │ ├── r600_pipe.h │ │ ├── r600_public.h │ │ ├── r600_resource.h │ │ ├── r600_shader.c │ │ ├── r600_shader.h │ │ ├── r600_sq.h │ │ ├── r600_state.c │ │ ├── r600_state_common.c │ │ ├── r600_uvd.c │ │ ├── r600d.h │ │ ├── r700_asm.c │ │ ├── r700_sq.h │ │ └── sb │ │ │ ├── notes.markdown │ │ │ ├── sb_bc.h │ │ │ ├── sb_bc_builder.cpp │ │ │ ├── sb_bc_decoder.cpp │ │ │ ├── sb_bc_dump.cpp │ │ │ ├── sb_bc_finalize.cpp │ │ │ ├── sb_bc_fmt_def.inc │ │ │ ├── sb_bc_parser.cpp │ │ │ ├── sb_context.cpp │ │ │ ├── sb_core.cpp │ │ │ ├── sb_dce_cleanup.cpp │ │ │ ├── sb_def_use.cpp │ │ │ ├── sb_dump.cpp │ │ │ ├── sb_expr.cpp │ │ │ ├── sb_expr.h │ │ │ ├── sb_gcm.cpp │ │ │ ├── sb_gvn.cpp │ │ │ ├── sb_if_conversion.cpp │ │ │ ├── sb_ir.cpp │ │ │ ├── sb_ir.h │ │ │ ├── sb_liveness.cpp │ │ │ ├── sb_pass.cpp │ │ │ ├── sb_pass.h │ │ │ ├── sb_peephole.cpp │ │ │ ├── sb_psi_ops.cpp │ │ │ ├── sb_public.h │ │ │ ├── sb_ra_checker.cpp │ │ │ ├── sb_ra_coalesce.cpp │ │ │ ├── sb_ra_init.cpp │ │ │ ├── sb_sched.cpp │ │ │ ├── sb_sched.h │ │ │ ├── sb_shader.cpp │ │ │ ├── sb_shader.h │ │ │ ├── sb_ssa_builder.cpp │ │ │ └── sb_valtable.cpp │ ├── radeon │ │ ├── LLVM_REVISION.txt │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── r600_buffer_common.c │ │ ├── r600_cs.h │ │ ├── r600_pipe_common.c │ │ ├── r600_pipe_common.h │ │ ├── r600_query.c │ │ ├── r600_streamout.c │ │ ├── r600_texture.c │ │ ├── r600d_common.h │ │ ├── radeon_llvm.h │ │ ├── radeon_llvm_emit.c │ │ ├── radeon_llvm_emit.h │ │ ├── radeon_llvm_util.c │ │ ├── radeon_llvm_util.h │ │ ├── radeon_setup_tgsi_llvm.c │ │ ├── radeon_uvd.c │ │ └── radeon_uvd.h │ ├── radeonsi │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── si_blit.c │ │ ├── si_commands.c │ │ ├── si_compute.c │ │ ├── si_descriptors.c │ │ ├── si_hw_context.c │ │ ├── si_pipe.c │ │ ├── si_pipe.h │ │ ├── si_pm4.c │ │ ├── si_pm4.h │ │ ├── si_public.h │ │ ├── si_shader.c │ │ ├── si_shader.h │ │ ├── si_state.c │ │ ├── si_state.h │ │ ├── si_state_draw.c │ │ ├── si_uvd.c │ │ └── sid.h │ ├── rbug │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── README │ │ ├── SConscript │ │ ├── rbug_context.c │ │ ├── rbug_context.h │ │ ├── rbug_core.c │ │ ├── rbug_objects.c │ │ ├── rbug_objects.h │ │ ├── rbug_public.h │ │ ├── rbug_screen.c │ │ └── rbug_screen.h │ ├── softpipe │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── sp_clear.c │ │ ├── sp_clear.h │ │ ├── sp_context.c │ │ ├── sp_context.h │ │ ├── sp_draw_arrays.c │ │ ├── sp_fence.c │ │ ├── sp_fence.h │ │ ├── sp_flush.c │ │ ├── sp_flush.h │ │ ├── sp_fs.h │ │ ├── sp_fs_exec.c │ │ ├── sp_limits.h │ │ ├── sp_prim_vbuf.c │ │ ├── sp_prim_vbuf.h │ │ ├── sp_public.h │ │ ├── sp_quad.h │ │ ├── sp_quad_blend.c │ │ ├── sp_quad_depth_test.c │ │ ├── sp_quad_depth_test_tmp.h │ │ ├── sp_quad_fs.c │ │ ├── sp_quad_pipe.c │ │ ├── sp_quad_pipe.h │ │ ├── sp_quad_stipple.c │ │ ├── sp_query.c │ │ ├── sp_query.h │ │ ├── sp_screen.c │ │ ├── sp_screen.h │ │ ├── sp_setup.c │ │ ├── sp_setup.h │ │ ├── sp_state.h │ │ ├── sp_state_blend.c │ │ ├── sp_state_clip.c │ │ ├── sp_state_derived.c │ │ ├── sp_state_rasterizer.c │ │ ├── sp_state_sampler.c │ │ ├── sp_state_shader.c │ │ ├── sp_state_so.c │ │ ├── sp_state_surface.c │ │ ├── sp_state_vertex.c │ │ ├── sp_surface.c │ │ ├── sp_surface.h │ │ ├── sp_tex_sample.c │ │ ├── sp_tex_sample.h │ │ ├── sp_tex_tile_cache.c │ │ ├── sp_tex_tile_cache.h │ │ ├── sp_texture.c │ │ ├── sp_texture.h │ │ ├── sp_tile_cache.c │ │ └── sp_tile_cache.h │ ├── svga │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── include │ │ │ ├── README │ │ │ ├── includeCheck.h │ │ │ ├── svga3d_caps.h │ │ │ ├── svga3d_cmd.h │ │ │ ├── svga3d_devcaps.h │ │ │ ├── svga3d_limits.h │ │ │ ├── svga3d_reg.h │ │ │ ├── svga3d_shaderdefs.h │ │ │ ├── svga3d_surfacedefs.h │ │ │ ├── svga3d_types.h │ │ │ ├── svga_escape.h │ │ │ ├── svga_overlay.h │ │ │ ├── svga_reg.h │ │ │ ├── svga_types.h │ │ │ ├── vmware_pack_begin.h │ │ │ └── vmware_pack_end.h │ │ ├── svga_cmd.c │ │ ├── svga_cmd.h │ │ ├── svga_context.c │ │ ├── svga_context.h │ │ ├── svga_debug.h │ │ ├── svga_draw.c │ │ ├── svga_draw.h │ │ ├── svga_draw_arrays.c │ │ ├── svga_draw_elements.c │ │ ├── svga_draw_private.h │ │ ├── svga_format.c │ │ ├── svga_format.h │ │ ├── svga_hw_reg.h │ │ ├── svga_pipe_blend.c │ │ ├── svga_pipe_blit.c │ │ ├── svga_pipe_clear.c │ │ ├── svga_pipe_constants.c │ │ ├── svga_pipe_depthstencil.c │ │ ├── svga_pipe_draw.c │ │ ├── svga_pipe_flush.c │ │ ├── svga_pipe_fs.c │ │ ├── svga_pipe_misc.c │ │ ├── svga_pipe_query.c │ │ ├── svga_pipe_rasterizer.c │ │ ├── svga_pipe_sampler.c │ │ ├── svga_pipe_vertex.c │ │ ├── svga_pipe_vs.c │ │ ├── svga_public.h │ │ ├── svga_resource.c │ │ ├── svga_resource.h │ │ ├── svga_resource_buffer.c │ │ ├── svga_resource_buffer.h │ │ ├── svga_resource_buffer_upload.c │ │ ├── svga_resource_buffer_upload.h │ │ ├── svga_resource_texture.c │ │ ├── svga_resource_texture.h │ │ ├── svga_sampler_view.c │ │ ├── svga_sampler_view.h │ │ ├── svga_screen.c │ │ ├── svga_screen.h │ │ ├── svga_screen_cache.c │ │ ├── svga_screen_cache.h │ │ ├── svga_shader.c │ │ ├── svga_shader.h │ │ ├── svga_state.c │ │ ├── svga_state.h │ │ ├── svga_state_constants.c │ │ ├── svga_state_framebuffer.c │ │ ├── svga_state_fs.c │ │ ├── svga_state_need_swtnl.c │ │ ├── svga_state_rss.c │ │ ├── svga_state_tss.c │ │ ├── svga_state_vdecl.c │ │ ├── svga_state_vs.c │ │ ├── svga_surface.c │ │ ├── svga_surface.h │ │ ├── svga_swtnl.h │ │ ├── svga_swtnl_backend.c │ │ ├── svga_swtnl_draw.c │ │ ├── svga_swtnl_private.h │ │ ├── svga_swtnl_state.c │ │ ├── svga_tgsi.c │ │ ├── svga_tgsi.h │ │ ├── svga_tgsi_decl_sm30.c │ │ ├── svga_tgsi_emit.h │ │ ├── svga_tgsi_insn.c │ │ ├── svga_winsys.h │ │ └── svgadump │ │ │ ├── svga_dump.c │ │ │ ├── svga_dump.h │ │ │ ├── svga_dump.py │ │ │ ├── svga_shader.h │ │ │ ├── svga_shader_dump.c │ │ │ ├── svga_shader_dump.h │ │ │ ├── svga_shader_op.c │ │ │ └── svga_shader_op.h │ └── trace │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── README │ │ ├── SConscript │ │ ├── tr_context.c │ │ ├── tr_context.h │ │ ├── tr_dump.c │ │ ├── tr_dump.h │ │ ├── tr_dump_defines.h │ │ ├── tr_dump_state.c │ │ ├── tr_dump_state.h │ │ ├── tr_public.h │ │ ├── tr_screen.c │ │ ├── tr_screen.h │ │ ├── tr_texture.c │ │ ├── tr_texture.h │ │ └── trace.xsl ├── include │ ├── pipe │ │ ├── p_compiler.h │ │ ├── p_config.h │ │ ├── p_context.h │ │ ├── p_defines.h │ │ ├── p_format.h │ │ ├── p_screen.h │ │ ├── p_shader_tokens.h │ │ ├── p_state.h │ │ ├── p_video_codec.h │ │ ├── p_video_enums.h │ │ └── p_video_state.h │ └── state_tracker │ │ ├── drisw_api.h │ │ ├── drm_driver.h │ │ ├── graw.h │ │ ├── st_api.h │ │ ├── sw_winsys.h │ │ ├── vdpau_interop.h │ │ └── xlib_sw_winsys.h ├── state_trackers │ ├── Makefile.am │ ├── README │ ├── clover │ │ ├── Doxyfile │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── api │ │ │ ├── context.cpp │ │ │ ├── device.cpp │ │ │ ├── dispatch.cpp │ │ │ ├── dispatch.hpp │ │ │ ├── event.cpp │ │ │ ├── kernel.cpp │ │ │ ├── memory.cpp │ │ │ ├── platform.cpp │ │ │ ├── program.cpp │ │ │ ├── queue.cpp │ │ │ ├── sampler.cpp │ │ │ ├── transfer.cpp │ │ │ └── util.hpp │ │ ├── core │ │ │ ├── compiler.hpp │ │ │ ├── context.cpp │ │ │ ├── context.hpp │ │ │ ├── device.cpp │ │ │ ├── device.hpp │ │ │ ├── error.hpp │ │ │ ├── event.cpp │ │ │ ├── event.hpp │ │ │ ├── format.cpp │ │ │ ├── format.hpp │ │ │ ├── kernel.cpp │ │ │ ├── kernel.hpp │ │ │ ├── memory.cpp │ │ │ ├── memory.hpp │ │ │ ├── module.cpp │ │ │ ├── module.hpp │ │ │ ├── object.hpp │ │ │ ├── platform.cpp │ │ │ ├── platform.hpp │ │ │ ├── program.cpp │ │ │ ├── program.hpp │ │ │ ├── property.hpp │ │ │ ├── queue.cpp │ │ │ ├── queue.hpp │ │ │ ├── resource.cpp │ │ │ ├── resource.hpp │ │ │ ├── sampler.cpp │ │ │ ├── sampler.hpp │ │ │ ├── timestamp.cpp │ │ │ └── timestamp.hpp │ │ ├── llvm │ │ │ └── invocation.cpp │ │ ├── tgsi │ │ │ └── compiler.cpp │ │ └── util │ │ │ ├── adaptor.hpp │ │ │ ├── algebra.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── compat.cpp │ │ │ ├── compat.hpp │ │ │ ├── factor.hpp │ │ │ ├── functional.hpp │ │ │ ├── lazy.hpp │ │ │ ├── pointer.hpp │ │ │ ├── range.hpp │ │ │ └── tuple.hpp │ ├── dri │ │ ├── Makefile.am │ │ ├── SConscript │ │ ├── common │ │ │ ├── dri_context.c │ │ │ ├── dri_context.h │ │ │ ├── dri_drawable.c │ │ │ ├── dri_drawable.h │ │ │ ├── dri_screen.c │ │ │ └── dri_screen.h │ │ ├── drm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.sources │ │ │ ├── SConscript │ │ │ ├── dri2.c │ │ │ ├── dri2_buffer.h │ │ │ ├── dri_context.c │ │ │ ├── dri_drawable.c │ │ │ └── dri_screen.c │ │ └── sw │ │ │ ├── Makefile.am │ │ │ ├── Makefile.sources │ │ │ ├── SConscript │ │ │ ├── dri_context.c │ │ │ ├── dri_drawable.c │ │ │ ├── dri_screen.c │ │ │ └── drisw.c │ ├── egl │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── android │ │ │ └── native_android.cpp │ │ ├── common │ │ │ ├── egl_g3d.c │ │ │ ├── egl_g3d.h │ │ │ ├── egl_g3d_api.c │ │ │ ├── egl_g3d_api.h │ │ │ ├── egl_g3d_image.c │ │ │ ├── egl_g3d_image.h │ │ │ ├── egl_g3d_loader.h │ │ │ ├── egl_g3d_st.c │ │ │ ├── egl_g3d_st.h │ │ │ ├── egl_g3d_sync.c │ │ │ ├── egl_g3d_sync.h │ │ │ ├── native.h │ │ │ ├── native_buffer.h │ │ │ ├── native_helper.c │ │ │ ├── native_helper.h │ │ │ ├── native_modeset.h │ │ │ ├── native_wayland_bufmgr.h │ │ │ ├── native_wayland_drm_bufmgr.c │ │ │ └── native_wayland_drm_bufmgr.h │ │ ├── drm │ │ │ ├── modeset.c │ │ │ ├── native_drm.c │ │ │ └── native_drm.h │ │ ├── fbdev │ │ │ └── native_fbdev.c │ │ ├── gdi │ │ │ └── native_gdi.c │ │ ├── null │ │ │ └── native_null.c │ │ ├── wayland │ │ │ ├── native_drm.c │ │ │ ├── native_shm.c │ │ │ ├── native_wayland.c │ │ │ └── native_wayland.h │ │ └── x11 │ │ │ ├── dri2.c │ │ │ ├── glcore.h │ │ │ ├── glxinit.c │ │ │ ├── glxinit.h │ │ │ ├── native_dri2.c │ │ │ ├── native_x11.c │ │ │ ├── native_x11.h │ │ │ ├── native_ximage.c │ │ │ ├── x11_screen.c │ │ │ └── x11_screen.h │ ├── gbm │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── gbm_drm.c │ │ └── gbm_gallium_drmint.h │ ├── glx │ │ └── xlib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.sources │ │ │ ├── SConscript │ │ │ ├── glx_api.c │ │ │ ├── glx_getproc.c │ │ │ ├── glx_usefont.c │ │ │ ├── xm_api.c │ │ │ ├── xm_api.h │ │ │ ├── xm_public.h │ │ │ ├── xm_st.c │ │ │ └── xm_st.h │ ├── osmesa │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ └── osmesa.c │ ├── vdpau │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── bitmap.c │ │ ├── decode.c │ │ ├── device.c │ │ ├── ftab.c │ │ ├── htab.c │ │ ├── mixer.c │ │ ├── output.c │ │ ├── preemption.c │ │ ├── presentation.c │ │ ├── query.c │ │ ├── surface.c │ │ └── vdpau_private.h │ ├── vega │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── api.c │ │ ├── api.h │ │ ├── api_consts.h │ │ ├── api_context.c │ │ ├── api_filters.c │ │ ├── api_images.c │ │ ├── api_masks.c │ │ ├── api_misc.c │ │ ├── api_paint.c │ │ ├── api_params.c │ │ ├── api_path.c │ │ ├── api_text.c │ │ ├── api_transform.c │ │ ├── arc.c │ │ ├── arc.h │ │ ├── asm_fill.h │ │ ├── asm_filters.h │ │ ├── asm_util.h │ │ ├── bezier.c │ │ ├── bezier.h │ │ ├── handle.c │ │ ├── handle.h │ │ ├── image.c │ │ ├── image.h │ │ ├── mask.c │ │ ├── mask.h │ │ ├── matrix.h │ │ ├── paint.c │ │ ├── paint.h │ │ ├── path.c │ │ ├── path.h │ │ ├── path_utils.h │ │ ├── polygon.c │ │ ├── polygon.h │ │ ├── renderer.c │ │ ├── renderer.h │ │ ├── shader.c │ │ ├── shader.h │ │ ├── shaders_cache.c │ │ ├── shaders_cache.h │ │ ├── stroker.c │ │ ├── stroker.h │ │ ├── text.c │ │ ├── text.h │ │ ├── util_array.h │ │ ├── vg_api.h │ │ ├── vg_context.c │ │ ├── vg_context.h │ │ ├── vg_manager.c │ │ ├── vg_manager.h │ │ ├── vg_state.c │ │ ├── vg_state.h │ │ ├── vg_translate.c │ │ ├── vg_translate.h │ │ └── vgu.c │ ├── wgl │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── opengl32.def │ │ ├── opengl32.mingw.def │ │ ├── stw_context.c │ │ ├── stw_context.h │ │ ├── stw_device.c │ │ ├── stw_device.h │ │ ├── stw_ext_context.c │ │ ├── stw_ext_extensionsstring.c │ │ ├── stw_ext_gallium.c │ │ ├── stw_ext_gallium.h │ │ ├── stw_ext_pbuffer.c │ │ ├── stw_ext_pixelformat.c │ │ ├── stw_ext_swapinterval.c │ │ ├── stw_framebuffer.c │ │ ├── stw_framebuffer.h │ │ ├── stw_getprocaddress.c │ │ ├── stw_icd.h │ │ ├── stw_pixelformat.c │ │ ├── stw_pixelformat.h │ │ ├── stw_st.c │ │ ├── stw_st.h │ │ ├── stw_tls.c │ │ ├── stw_tls.h │ │ ├── stw_wgl.c │ │ ├── stw_wgl.h │ │ └── stw_winsys.h │ ├── xa │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── README │ │ ├── xa-indent │ │ ├── xa_composite.c │ │ ├── xa_composite.h │ │ ├── xa_context.c │ │ ├── xa_context.h │ │ ├── xa_priv.h │ │ ├── xa_renderer.c │ │ ├── xa_tgsi.c │ │ ├── xa_tracker.c │ │ ├── xa_tracker.h │ │ └── xa_yuv.c │ └── xvmc │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── attributes.c │ │ ├── block.c │ │ ├── context.c │ │ ├── subpicture.c │ │ ├── surface.c │ │ ├── tests │ │ ├── .gitignore │ │ ├── test_blocks.c │ │ ├── test_context.c │ │ ├── test_rendering.c │ │ ├── test_subpicture.c │ │ ├── test_surface.c │ │ ├── testlib.c │ │ ├── testlib.h │ │ └── xvmc_bench.c │ │ └── xvmc_private.h ├── targets │ ├── Makefile.am │ ├── dri-freedreno │ │ ├── Makefile.am │ │ ├── target-kgsl.c │ │ └── target-msm.c │ ├── dri-i915 │ │ ├── Makefile.am │ │ ├── SConscript │ │ └── target.c │ ├── dri-ilo │ │ ├── Makefile.am │ │ └── target.c │ ├── dri-nouveau │ │ ├── Makefile.am │ │ └── target.c │ ├── dri-swrast │ │ ├── Makefile.am │ │ ├── SConscript │ │ └── swrast_drm_api.c │ ├── dri-vmwgfx │ │ ├── Makefile.am │ │ ├── SConscript │ │ ├── target.c │ │ └── vmw_powf.c │ ├── egl-static │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── SConscript │ │ ├── egl.c │ │ ├── egl.link │ │ ├── egl_pipe.c │ │ ├── egl_pipe.h │ │ ├── egl_st.c │ │ ├── egl_st.h │ │ └── st_GL.c │ ├── gbm │ │ ├── Makefile.am │ │ └── gbm.c │ ├── graw-gdi │ │ ├── SConscript │ │ └── graw_gdi.c │ ├── graw-null │ │ ├── SConscript │ │ ├── graw_null.c │ │ └── graw_util.c │ ├── graw-xlib │ │ ├── SConscript │ │ └── graw_xlib.c │ ├── haiku-softpipe │ │ ├── GalliumContext.cpp │ │ ├── GalliumContext.h │ │ ├── GalliumFramebuffer.cpp │ │ ├── GalliumFramebuffer.h │ │ ├── SConscript │ │ ├── SoftwareRenderer.cpp │ │ ├── SoftwareRenderer.h │ │ └── SoftwareRenderer.rdef │ ├── libgl-gdi │ │ ├── SConscript │ │ └── libgl_gdi.c │ ├── libgl-xlib │ │ ├── Makefile.am │ │ ├── SConscript │ │ └── xlib.c │ ├── opencl │ │ ├── Makefile.am │ │ └── mesa.icd │ ├── osmesa │ │ ├── Makefile.am │ │ ├── osmesa.pc.in │ │ └── target.c │ ├── pipe-loader │ │ ├── Makefile.am │ │ ├── pipe.link │ │ ├── pipe_i915.c │ │ ├── pipe_nouveau.c │ │ ├── pipe_r300.c │ │ ├── pipe_r600.c │ │ ├── pipe_radeonsi.c │ │ ├── pipe_swrast.c │ │ └── pipe_vmwgfx.c │ ├── r300 │ │ ├── common │ │ │ └── drm_target.c │ │ └── dri │ │ │ ├── Makefile.am │ │ │ └── drm_target.c │ ├── r600 │ │ ├── common │ │ │ └── drm_target.c │ │ ├── dri │ │ │ ├── Makefile.am │ │ │ └── drm_target.c │ │ ├── vdpau │ │ │ ├── Makefile.am │ │ │ └── drm_target.c │ │ └── xvmc │ │ │ ├── Makefile.am │ │ │ └── drm_target.c │ ├── radeonsi │ │ ├── common │ │ │ └── drm_target.c │ │ ├── dri │ │ │ ├── Makefile.am │ │ │ └── drm_target.c │ │ └── vdpau │ │ │ ├── Makefile.am │ │ │ └── drm_target.c │ ├── vdpau-nouveau │ │ ├── Makefile.am │ │ └── target.c │ ├── xa-vmwgfx │ │ ├── Makefile.am │ │ ├── vmw_target.c │ │ └── xatracker.pc.in │ └── xvmc-nouveau │ │ ├── Makefile.am │ │ └── target.c ├── tests │ ├── graw │ │ ├── SConscript │ │ ├── clear.c │ │ ├── disasm.c │ │ ├── fragment-shader │ │ │ ├── frag-abs.sh │ │ │ ├── frag-add.sh │ │ │ ├── frag-cb-1d.sh │ │ │ ├── frag-cb-2d.sh │ │ │ ├── frag-dp3.sh │ │ │ ├── frag-dp4.sh │ │ │ ├── frag-dst.sh │ │ │ ├── frag-ex2.sh │ │ │ ├── frag-face.sh │ │ │ ├── frag-flr.sh │ │ │ ├── frag-frc.sh │ │ │ ├── frag-kil.sh │ │ │ ├── frag-lg2.sh │ │ │ ├── frag-lit.sh │ │ │ ├── frag-lrp.sh │ │ │ ├── frag-mad-immx.sh │ │ │ ├── frag-mad.sh │ │ │ ├── frag-max.sh │ │ │ ├── frag-min.sh │ │ │ ├── frag-mov.sh │ │ │ ├── frag-mul.sh │ │ │ ├── frag-rcp.sh │ │ │ ├── frag-rsq.sh │ │ │ ├── frag-sge.sh │ │ │ ├── frag-slt.sh │ │ │ ├── frag-srcmod-abs.sh │ │ │ ├── frag-srcmod-absneg.sh │ │ │ ├── frag-srcmod-neg.sh │ │ │ ├── frag-srcmod-swz.sh │ │ │ ├── frag-sub.sh │ │ │ ├── frag-tempx.sh │ │ │ ├── frag-ucmp.sh │ │ │ └── frag-xpd.sh │ │ ├── fs-fragcoord.c │ │ ├── fs-frontface.c │ │ ├── fs-test.c │ │ ├── fs-write-z.c │ │ ├── geometry-shader │ │ │ ├── add-mix.txt │ │ │ ├── add.txt │ │ │ ├── line.txt │ │ │ ├── mov-cb-2d.txt │ │ │ ├── mov.txt │ │ │ └── multi-line.txt │ │ ├── graw_util.h │ │ ├── gs-test.c │ │ ├── occlusion-query.c │ │ ├── quad-sample.c │ │ ├── quad-tex.c │ │ ├── shader-leak.c │ │ ├── tex-srgb.c │ │ ├── tex-swizzle.c │ │ ├── tgsi_dump.gdb │ │ ├── tri-gs.c │ │ ├── tri-instanced.c │ │ ├── tri-large.c │ │ ├── tri.c │ │ ├── vertex-shader │ │ │ ├── vert-abs.sh │ │ │ ├── vert-add.sh │ │ │ ├── vert-arl.sh │ │ │ ├── vert-arr.sh │ │ │ ├── vert-cb-1d.sh │ │ │ ├── vert-cb-2d.sh │ │ │ ├── vert-dp3.sh │ │ │ ├── vert-dp4.sh │ │ │ ├── vert-dst.sh │ │ │ ├── vert-ex2.sh │ │ │ ├── vert-flr.sh │ │ │ ├── vert-frc.sh │ │ │ ├── vert-imul_hi.sh │ │ │ ├── vert-lg2.sh │ │ │ ├── vert-lit.sh │ │ │ ├── vert-lrp.sh │ │ │ ├── vert-mad.sh │ │ │ ├── vert-max.sh │ │ │ ├── vert-min.sh │ │ │ ├── vert-mov.sh │ │ │ ├── vert-mul.sh │ │ │ ├── vert-rcp.sh │ │ │ ├── vert-rsq.sh │ │ │ ├── vert-sge.sh │ │ │ ├── vert-slt.sh │ │ │ ├── vert-srcmod-abs.sh │ │ │ ├── vert-srcmod-absneg.sh │ │ │ ├── vert-srcmod-neg.sh │ │ │ ├── vert-srcmod-swz.sh │ │ │ ├── vert-sub.sh │ │ │ ├── vert-uadd.sh │ │ │ ├── vert-umul_hi.sh │ │ │ └── vert-xpd.sh │ │ └── vs-test.c │ ├── python │ │ └── tests │ │ │ └── regress │ │ │ └── fragment-shader │ │ │ └── frag-cmp.sh │ ├── trivial │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── compute.c │ │ ├── quad-tex.c │ │ └── tri.c │ └── unit │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── SConscript │ │ ├── pipe_barrier_test.c │ │ ├── translate_test.c │ │ ├── u_cache_test.c │ │ ├── u_format_compatible_test.c │ │ ├── u_format_test.c │ │ └── u_half_test.c ├── tools │ ├── addr2line.sh │ └── trace │ │ ├── README.txt │ │ ├── TODO.txt │ │ ├── diff_state.py │ │ ├── dump.py │ │ ├── dump_state.py │ │ ├── format.py │ │ ├── model.py │ │ ├── parse.py │ │ └── tracediff.sh └── winsys │ ├── Makefile.am │ ├── freedreno │ └── drm │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── freedreno_drm_public.h │ │ └── freedreno_drm_winsys.c │ ├── i915 │ ├── drm │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── i915_drm_batchbuffer.c │ │ ├── i915_drm_buffer.c │ │ ├── i915_drm_fence.c │ │ ├── i915_drm_public.h │ │ ├── i915_drm_winsys.c │ │ └── i915_drm_winsys.h │ └── sw │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── i915_sw_batchbuffer.c │ │ ├── i915_sw_buffer.c │ │ ├── i915_sw_fence.c │ │ ├── i915_sw_public.h │ │ ├── i915_sw_winsys.c │ │ └── i915_sw_winsys.h │ ├── intel │ ├── drm │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ └── intel_drm_winsys.c │ └── intel_winsys.h │ ├── nouveau │ └── drm │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── nouveau_drm_public.h │ │ └── nouveau_drm_winsys.c │ ├── radeon │ ├── drm │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── radeon_drm_bo.c │ │ ├── radeon_drm_bo.h │ │ ├── radeon_drm_cs.c │ │ ├── radeon_drm_cs.h │ │ ├── radeon_drm_cs_dump.c │ │ ├── radeon_drm_public.h │ │ ├── radeon_drm_winsys.c │ │ ├── radeon_drm_winsys.h │ │ └── radeon_winsys.h │ └── tools │ │ └── radeon_ctx.h │ ├── svga │ └── drm │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── pb_buffer_simple_fenced.c │ │ ├── svga_drm_public.h │ │ ├── vmw_buffer.c │ │ ├── vmw_buffer.h │ │ ├── vmw_context.c │ │ ├── vmw_context.h │ │ ├── vmw_fence.c │ │ ├── vmw_fence.h │ │ ├── vmw_screen.c │ │ ├── vmw_screen.h │ │ ├── vmw_screen_dri.c │ │ ├── vmw_screen_ioctl.c │ │ ├── vmw_screen_pools.c │ │ ├── vmw_screen_svga.c │ │ ├── vmw_shader.c │ │ ├── vmw_shader.h │ │ ├── vmw_surface.c │ │ ├── vmw_surface.h │ │ └── vmwgfx_drm.h │ └── sw │ ├── android │ ├── Android.mk │ ├── android_sw_winsys.cpp │ └── android_sw_winsys.h │ ├── dri │ ├── Makefile.am │ ├── SConscript │ ├── dri_sw_winsys.c │ └── dri_sw_winsys.h │ ├── fbdev │ ├── Makefile.am │ ├── SConscript │ ├── fbdev_sw_winsys.c │ └── fbdev_sw_winsys.h │ ├── gdi │ ├── SConscript │ ├── gdi_sw_winsys.c │ └── gdi_sw_winsys.h │ ├── hgl │ ├── SConscript │ ├── bitmap_wrapper.cpp │ ├── bitmap_wrapper.h │ ├── hgl_sw_winsys.c │ └── hgl_sw_winsys.h │ ├── null │ ├── Makefile.am │ ├── SConscript │ ├── null_sw_winsys.c │ └── null_sw_winsys.h │ ├── wayland │ ├── Makefile.am │ ├── wayland_sw_winsys.c │ └── wayland_sw_winsys.h │ ├── wrapper │ ├── Makefile.am │ ├── SConscript │ ├── wrapper_sw_winsys.c │ └── wrapper_sw_winsys.h │ └── xlib │ ├── Makefile.am │ ├── SConscript │ └── xlib_sw_winsys.c ├── gbm ├── Makefile.am ├── backends │ └── dri │ │ ├── gbm_dri.c │ │ └── gbm_driint.h └── main │ ├── backend.c │ ├── backend.h │ ├── common_drm.h │ ├── gbm.c │ ├── gbm.h │ ├── gbm.pc.in │ └── gbmint.h ├── getopt ├── SConscript ├── getopt.h └── getopt_long.c ├── glsl ├── .gitignore ├── Android.gen.mk ├── Android.mk ├── Makefile.am ├── Makefile.sources ├── README ├── SConscript ├── TODO ├── ast.h ├── ast_array_index.cpp ├── ast_expr.cpp ├── ast_function.cpp ├── ast_to_hir.cpp ├── ast_type.cpp ├── builtin_functions.cpp ├── builtin_type_macros.h ├── builtin_types.cpp ├── builtin_variables.cpp ├── glcpp │ ├── .gitignore │ ├── README │ ├── glcpp-lex.l │ ├── glcpp-parse.y │ ├── glcpp.c │ ├── glcpp.h │ ├── pp.c │ └── tests │ │ ├── 000-content-with-spaces.c │ │ ├── 000-content-with-spaces.c.expected │ │ ├── 001-define.c │ │ ├── 001-define.c.expected │ │ ├── 002-define-chain.c │ │ ├── 002-define-chain.c.expected │ │ ├── 003-define-chain-reverse.c │ │ ├── 003-define-chain-reverse.c.expected │ │ ├── 004-define-recursive.c │ │ ├── 004-define-recursive.c.expected │ │ ├── 005-define-composite-chain.c │ │ ├── 005-define-composite-chain.c.expected │ │ ├── 006-define-composite-chain-reverse.c │ │ ├── 006-define-composite-chain-reverse.c.expected │ │ ├── 007-define-composite-recursive.c │ │ ├── 007-define-composite-recursive.c.expected │ │ ├── 008-define-empty.c │ │ ├── 008-define-empty.c.expected │ │ ├── 009-undef.c │ │ ├── 009-undef.c.expected │ │ ├── 010-undef-re-define.c │ │ ├── 010-undef-re-define.c.expected │ │ ├── 011-define-func-empty.c │ │ ├── 011-define-func-empty.c.expected │ │ ├── 012-define-func-no-args.c │ │ ├── 012-define-func-no-args.c.expected │ │ ├── 013-define-func-1-arg-unused.c │ │ ├── 013-define-func-1-arg-unused.c.expected │ │ ├── 014-define-func-2-arg-unused.c │ │ ├── 014-define-func-2-arg-unused.c.expected │ │ ├── 015-define-object-with-parens.c │ │ ├── 015-define-object-with-parens.c.expected │ │ ├── 016-define-func-1-arg.c │ │ ├── 016-define-func-1-arg.c.expected │ │ ├── 017-define-func-2-args.c │ │ ├── 017-define-func-2-args.c.expected │ │ ├── 018-define-func-macro-as-parameter.c │ │ ├── 018-define-func-macro-as-parameter.c.expected │ │ ├── 019-define-func-1-arg-multi.c │ │ ├── 019-define-func-1-arg-multi.c.expected │ │ ├── 020-define-func-2-arg-multi.c │ │ ├── 020-define-func-2-arg-multi.c.expected │ │ ├── 021-define-func-compose.c │ │ ├── 021-define-func-compose.c.expected │ │ ├── 022-define-func-arg-with-parens.c │ │ ├── 022-define-func-arg-with-parens.c.expected │ │ ├── 023-define-extra-whitespace.c │ │ ├── 023-define-extra-whitespace.c.expected │ │ ├── 024-define-chain-to-self-recursion.c │ │ ├── 024-define-chain-to-self-recursion.c.expected │ │ ├── 025-func-macro-as-non-macro.c │ │ ├── 025-func-macro-as-non-macro.c.expected │ │ ├── 026-define-func-extra-newlines.c │ │ ├── 026-define-func-extra-newlines.c.expected │ │ ├── 027-define-chain-obj-to-func.c │ │ ├── 027-define-chain-obj-to-func.c.expected │ │ ├── 028-define-chain-obj-to-non-func.c │ │ ├── 028-define-chain-obj-to-non-func.c.expected │ │ ├── 029-define-chain-obj-to-func-with-args.c │ │ ├── 029-define-chain-obj-to-func-with-args.c.expected │ │ ├── 030-define-chain-obj-to-func-compose.c │ │ ├── 030-define-chain-obj-to-func-compose.c.expected │ │ ├── 031-define-chain-func-to-func-compose.c │ │ ├── 031-define-chain-func-to-func-compose.c.expected │ │ ├── 032-define-func-self-recurse.c │ │ ├── 032-define-func-self-recurse.c.expected │ │ ├── 033-define-func-self-compose.c │ │ ├── 033-define-func-self-compose.c.expected │ │ ├── 034-define-func-self-compose-non-func.c │ │ ├── 034-define-func-self-compose-non-func.c.expected │ │ ├── 035-define-func-self-compose-non-func-multi-token-argument.c │ │ ├── 035-define-func-self-compose-non-func-multi-token-argument.c.expected │ │ ├── 036-define-func-non-macro-multi-token-argument.c │ │ ├── 036-define-func-non-macro-multi-token-argument.c.expected │ │ ├── 037-finalize-unexpanded-macro.c │ │ ├── 037-finalize-unexpanded-macro.c.expected │ │ ├── 038-func-arg-with-commas.c │ │ ├── 038-func-arg-with-commas.c.expected │ │ ├── 039-func-arg-obj-macro-with-comma.c │ │ ├── 039-func-arg-obj-macro-with-comma.c.expected │ │ ├── 040-token-pasting.c │ │ ├── 040-token-pasting.c.expected │ │ ├── 041-if-0.c │ │ ├── 041-if-0.c.expected │ │ ├── 042-if-1.c │ │ ├── 042-if-1.c.expected │ │ ├── 043-if-0-else.c │ │ ├── 043-if-0-else.c.expected │ │ ├── 044-if-1-else.c │ │ ├── 044-if-1-else.c.expected │ │ ├── 045-if-0-elif.c │ │ ├── 045-if-0-elif.c.expected │ │ ├── 046-if-1-elsif.c │ │ ├── 046-if-1-elsif.c.expected │ │ ├── 047-if-elif-else.c │ │ ├── 047-if-elif-else.c.expected │ │ ├── 048-if-nested.c │ │ ├── 048-if-nested.c.expected │ │ ├── 049-if-expression-precedence.c │ │ ├── 049-if-expression-precedence.c.expected │ │ ├── 050-if-defined.c │ │ ├── 050-if-defined.c.expected │ │ ├── 051-if-relational.c │ │ ├── 051-if-relational.c.expected │ │ ├── 052-if-bitwise.c │ │ ├── 052-if-bitwise.c.expected │ │ ├── 053-if-divide-and-shift.c │ │ ├── 053-if-divide-and-shift.c.expected │ │ ├── 054-if-with-macros.c │ │ ├── 054-if-with-macros.c.expected │ │ ├── 055-define-chain-obj-to-func-parens-in-text.c │ │ ├── 055-define-chain-obj-to-func-parens-in-text.c.expected │ │ ├── 056-macro-argument-with-comma.c │ │ ├── 056-macro-argument-with-comma.c.expected │ │ ├── 057-empty-arguments.c │ │ ├── 057-empty-arguments.c.expected │ │ ├── 058-token-pasting-empty-arguments.c │ │ ├── 058-token-pasting-empty-arguments.c.expected │ │ ├── 059-token-pasting-integer.c │ │ ├── 059-token-pasting-integer.c.expected │ │ ├── 060-left-paren-in-macro-right-paren-in-text.c │ │ ├── 060-left-paren-in-macro-right-paren-in-text.c.expected │ │ ├── 061-define-chain-obj-to-func-multi.c │ │ ├── 061-define-chain-obj-to-func-multi.c.expected │ │ ├── 062-if-0-skips-garbage.c │ │ ├── 062-if-0-skips-garbage.c.expected │ │ ├── 063-comments.c │ │ ├── 063-comments.c.expected │ │ ├── 064-version.c │ │ ├── 064-version.c.expected │ │ ├── 065-if-defined-parens.c │ │ ├── 065-if-defined-parens.c.expected │ │ ├── 066-if-nospace-expression.c │ │ ├── 066-if-nospace-expression.c.expected │ │ ├── 067-nested-ifdef-ifndef.c │ │ ├── 067-nested-ifdef-ifndef.c.expected │ │ ├── 068-accidental-pasting.c │ │ ├── 068-accidental-pasting.c.expected │ │ ├── 069-repeated-argument.c │ │ ├── 069-repeated-argument.c.expected │ │ ├── 070-undefined-macro-in-expression.c │ │ ├── 070-undefined-macro-in-expression.c.expected │ │ ├── 071-punctuator.c │ │ ├── 071-punctuator.c.expected │ │ ├── 072-token-pasting-same-line.c │ │ ├── 072-token-pasting-same-line.c.expected │ │ ├── 073-if-in-ifdef.c │ │ ├── 073-if-in-ifdef.c.expected │ │ ├── 074-elif-undef.c │ │ ├── 074-elif-undef.c.expected │ │ ├── 075-elif-elif-undef.c │ │ ├── 075-elif-elif-undef.c.expected │ │ ├── 076-elif-undef-nested.c │ │ ├── 076-elif-undef-nested.c.expected │ │ ├── 077-else-without-if.c │ │ ├── 077-else-without-if.c.expected │ │ ├── 078-elif-without-if.c │ │ ├── 078-elif-without-if.c.expected │ │ ├── 079-endif-without-if.c │ │ ├── 079-endif-without-if.c.expected │ │ ├── 080-if-without-expression.c │ │ ├── 080-if-without-expression.c.expected │ │ ├── 081-elif-without-expression.c │ │ ├── 081-elif-without-expression.c.expected │ │ ├── 082-invalid-paste.c │ │ ├── 082-invalid-paste.c.expected │ │ ├── 083-unterminated-if.c │ │ ├── 083-unterminated-if.c.expected │ │ ├── 084-unbalanced-parentheses.c │ │ ├── 084-unbalanced-parentheses.c.expected │ │ ├── 085-incorrect-argument-count.c │ │ ├── 085-incorrect-argument-count.c.expected │ │ ├── 086-reserved-macro-names.c │ │ ├── 086-reserved-macro-names.c.expected │ │ ├── 087-if-comments.c │ │ ├── 087-if-comments.c.expected │ │ ├── 088-redefine-macro-legitimate.c │ │ ├── 088-redefine-macro-legitimate.c.expected │ │ ├── 089-redefine-macro-error.c │ │ ├── 089-redefine-macro-error.c.expected │ │ ├── 090-hash-error.c │ │ ├── 090-hash-error.c.expected │ │ ├── 091-hash-line.c │ │ ├── 091-hash-line.c.expected │ │ ├── 092-redefine-macro-error-2.c │ │ ├── 092-redefine-macro-error-2.c.expected │ │ ├── 093-divide-by-zero.c │ │ ├── 093-divide-by-zero.c.expected │ │ ├── 094-divide-by-zero-short-circuit.c │ │ ├── 094-divide-by-zero-short-circuit.c.expected │ │ ├── 095-recursive-define.c │ │ ├── 095-recursive-define.c.expected │ │ ├── 096-paste-twice.c │ │ ├── 096-paste-twice.c.expected │ │ ├── 097-paste-with-non-function-macro.c │ │ ├── 097-paste-with-non-function-macro.c.expected │ │ ├── 098-elif-undefined.c │ │ ├── 098-elif-undefined.c.expected │ │ ├── 099-c99-example.c │ │ ├── 099-c99-example.c.expected │ │ ├── 100-macro-with-colon.c │ │ ├── 100-macro-with-colon.c.expected │ │ ├── 101-macros-used-twice.c │ │ ├── 101-macros-used-twice.c.expected │ │ ├── 102-garbage-after-endif.c │ │ ├── 102-garbage-after-endif.c.expected │ │ ├── 103-garbage-after-else.c │ │ ├── 103-garbage-after-else.c.expected │ │ ├── 104-hash-line-followed-by-code.c │ │ ├── 104-hash-line-followed-by-code.c.expected │ │ ├── 105-multiline-hash-line.c │ │ ├── 105-multiline-hash-line.c.expected │ │ ├── 106-multiline-hash-if.c │ │ ├── 106-multiline-hash-if.c.expected │ │ ├── 107-multiline-hash-elif.c │ │ ├── 107-multiline-hash-elif.c.expected │ │ ├── 108-no-space-after-hash-version.c │ │ ├── 108-no-space-after-hash-version.c.expected │ │ ├── 109-no-space-after-hash-line.c │ │ ├── 109-no-space-after-hash-line.c.expected │ │ ├── 110-no-space-digits-after-hash-elif.c │ │ ├── 110-no-space-digits-after-hash-elif.c.expected │ │ ├── 111-no-space-operator-after-hash-if.c │ │ ├── 111-no-space-operator-after-hash-if.c.expected │ │ ├── 112-no-space-operator-after-hash-elif.c │ │ ├── 112-no-space-operator-after-hash-elif.c.expected │ │ ├── 113-line-and-file-macros.c │ │ ├── 113-line-and-file-macros.c.expected │ │ ├── 114-paste-integer-tokens.c │ │ ├── 114-paste-integer-tokens.c.expected │ │ ├── 115-line-continuations.c │ │ ├── 115-line-continuations.c.expected │ │ ├── 116-disable-line-continuations.c │ │ ├── 116-disable-line-continuations.c.expected │ │ ├── 117-line-continuation-and-non-continuation-backslash.c │ │ ├── 117-line-continuation-and-non-continuation-backslash.c.expected │ │ ├── 118-comment-becomes-space.c │ │ ├── 118-comment-becomes-space.c.expected │ │ ├── 118-multiple-else.c │ │ ├── 118-multiple-else.c.expected │ │ ├── 119-elif-after-else.c │ │ ├── 119-elif-after-else.c.expected │ │ ├── 121-comment-bug-72686.c │ │ ├── 121-comment-bug-72686.c.expected │ │ └── glcpp-test ├── glsl_lexer.ll ├── glsl_parser.yy ├── glsl_parser_extras.cpp ├── glsl_parser_extras.h ├── glsl_symbol_table.cpp ├── glsl_symbol_table.h ├── glsl_types.cpp ├── glsl_types.h ├── hir_field_selection.cpp ├── ir.cpp ├── ir.h ├── ir_basic_block.cpp ├── ir_basic_block.h ├── ir_builder.cpp ├── ir_builder.h ├── ir_clone.cpp ├── ir_constant_expression.cpp ├── ir_equals.cpp ├── ir_expression_flattening.cpp ├── ir_expression_flattening.h ├── ir_function.cpp ├── ir_function_can_inline.cpp ├── ir_function_detect_recursion.cpp ├── ir_function_inlining.h ├── ir_hierarchical_visitor.cpp ├── ir_hierarchical_visitor.h ├── ir_hv_accept.cpp ├── ir_import_prototypes.cpp ├── ir_optimization.h ├── ir_print_visitor.cpp ├── ir_print_visitor.h ├── ir_reader.cpp ├── ir_reader.h ├── ir_rvalue_visitor.cpp ├── ir_rvalue_visitor.h ├── ir_set_program_inouts.cpp ├── ir_uniform.h ├── ir_validate.cpp ├── ir_variable_refcount.cpp ├── ir_variable_refcount.h ├── ir_visitor.h ├── link_atomics.cpp ├── link_functions.cpp ├── link_interface_blocks.cpp ├── link_uniform_block_active_visitor.cpp ├── link_uniform_block_active_visitor.h ├── link_uniform_blocks.cpp ├── link_uniform_initializers.cpp ├── link_uniforms.cpp ├── link_varyings.cpp ├── link_varyings.h ├── linker.cpp ├── linker.h ├── list.h ├── loop_analysis.cpp ├── loop_analysis.h ├── loop_controls.cpp ├── loop_unroll.cpp ├── lower_clip_distance.cpp ├── lower_discard.cpp ├── lower_discard_flow.cpp ├── lower_if_to_cond_assign.cpp ├── lower_instructions.cpp ├── lower_jumps.cpp ├── lower_mat_op_to_vec.cpp ├── lower_named_interface_blocks.cpp ├── lower_noise.cpp ├── lower_output_reads.cpp ├── lower_packed_varyings.cpp ├── lower_packing_builtins.cpp ├── lower_texture_projection.cpp ├── lower_ubo_reference.cpp ├── lower_variable_index_to_cond_assign.cpp ├── lower_vec_index_to_cond_assign.cpp ├── lower_vec_index_to_swizzle.cpp ├── lower_vector.cpp ├── lower_vector_insert.cpp ├── main.cpp ├── opt_algebraic.cpp ├── opt_array_splitting.cpp ├── opt_constant_folding.cpp ├── opt_constant_propagation.cpp ├── opt_constant_variable.cpp ├── opt_copy_propagation.cpp ├── opt_copy_propagation_elements.cpp ├── opt_cse.cpp ├── opt_dead_builtin_varyings.cpp ├── opt_dead_code.cpp ├── opt_dead_code_local.cpp ├── opt_dead_functions.cpp ├── opt_flatten_nested_if_blocks.cpp ├── opt_flip_matrices.cpp ├── opt_function_inlining.cpp ├── opt_if_simplification.cpp ├── opt_noop_swizzle.cpp ├── opt_redundant_jumps.cpp ├── opt_structure_splitting.cpp ├── opt_swizzle_swizzle.cpp ├── opt_tree_grafting.cpp ├── opt_vectorize.cpp ├── program.h ├── ralloc.c ├── ralloc.h ├── s_expression.cpp ├── s_expression.h ├── standalone_scaffolding.cpp ├── standalone_scaffolding.h ├── strtod.c ├── strtod.h ├── test.cpp ├── test_optpass.cpp ├── test_optpass.h ├── tests │ ├── .gitignore │ ├── builtin_variable_test.cpp │ ├── compare_ir │ ├── copy_constant_to_storage_tests.cpp │ ├── general_ir_test.cpp │ ├── invalidate_locations_test.cpp │ ├── lower_jumps │ │ ├── .gitignore │ │ ├── create_test_cases.py │ │ ├── lower_breaks_1.opt_test │ │ ├── lower_breaks_1.opt_test.expected │ │ ├── lower_breaks_2.opt_test │ │ ├── lower_breaks_2.opt_test.expected │ │ ├── lower_breaks_3.opt_test │ │ ├── lower_breaks_3.opt_test.expected │ │ ├── lower_breaks_4.opt_test │ │ ├── lower_breaks_4.opt_test.expected │ │ ├── lower_breaks_5.opt_test │ │ ├── lower_breaks_5.opt_test.expected │ │ ├── lower_breaks_6.opt_test │ │ ├── lower_breaks_6.opt_test.expected │ │ ├── lower_guarded_conditional_break.opt_test │ │ ├── lower_guarded_conditional_break.opt_test.expected │ │ ├── lower_pulled_out_jump.opt_test │ │ ├── lower_pulled_out_jump.opt_test.expected │ │ ├── lower_returns_1.opt_test │ │ ├── lower_returns_1.opt_test.expected │ │ ├── lower_returns_2.opt_test │ │ ├── lower_returns_2.opt_test.expected │ │ ├── lower_returns_3.opt_test │ │ ├── lower_returns_3.opt_test.expected │ │ ├── lower_returns_4.opt_test │ │ ├── lower_returns_4.opt_test.expected │ │ ├── lower_returns_main_false.opt_test │ │ ├── lower_returns_main_false.opt_test.expected │ │ ├── lower_returns_main_true.opt_test │ │ ├── lower_returns_main_true.opt_test.expected │ │ ├── lower_returns_sub_false.opt_test │ │ ├── lower_returns_sub_false.opt_test.expected │ │ ├── lower_returns_sub_true.opt_test │ │ ├── lower_returns_sub_true.opt_test.expected │ │ ├── lower_unified_returns.opt_test │ │ ├── lower_unified_returns.opt_test.expected │ │ ├── remove_continue_at_end_of_loop.opt_test │ │ ├── remove_continue_at_end_of_loop.opt_test.expected │ │ ├── return_non_void_at_end_of_loop_lower_nothing.opt_test │ │ ├── return_non_void_at_end_of_loop_lower_nothing.opt_test.expected │ │ ├── return_non_void_at_end_of_loop_lower_return.opt_test │ │ ├── return_non_void_at_end_of_loop_lower_return.opt_test.expected │ │ ├── return_non_void_at_end_of_loop_lower_return_and_break.opt_test │ │ ├── return_non_void_at_end_of_loop_lower_return_and_break.opt_test.expected │ │ ├── return_void_at_end_of_loop_lower_nothing.opt_test │ │ ├── return_void_at_end_of_loop_lower_nothing.opt_test.expected │ │ ├── return_void_at_end_of_loop_lower_return.opt_test │ │ ├── return_void_at_end_of_loop_lower_return.opt_test.expected │ │ ├── return_void_at_end_of_loop_lower_return_and_break.opt_test │ │ └── return_void_at_end_of_loop_lower_return_and_break.opt_test.expected │ ├── optimization-test │ ├── ralloc_test.cpp │ ├── sampler_types_test.cpp │ ├── set_uniform_initializer_tests.cpp │ ├── sexps.py │ ├── threadpool_test.cpp │ ├── uniform_initializer_utils.cpp │ └── uniform_initializer_utils.h ├── threadpool.c └── threadpool.h ├── glx ├── .gitignore ├── Makefile.am ├── SConscript ├── XF86dri.c ├── apple │ ├── Makefile │ ├── RELEASE_NOTES │ ├── TODO │ ├── apple_cgl.c │ ├── apple_cgl.h │ ├── apple_glapi.c │ ├── apple_glx.c │ ├── apple_glx.h │ ├── apple_glx_context.c │ ├── apple_glx_context.h │ ├── apple_glx_drawable.c │ ├── apple_glx_drawable.h │ ├── apple_glx_log.c │ ├── apple_glx_log.h │ ├── apple_glx_pbuffer.c │ ├── apple_glx_pixmap.c │ ├── apple_glx_surface.c │ ├── apple_visual.c │ ├── apple_visual.h │ ├── apple_xgl_api.h │ ├── apple_xgl_api_read.c │ ├── apple_xgl_api_stereo.c │ ├── apple_xgl_api_viewport.c │ ├── appledri.c │ ├── appledri.h │ ├── appledristr.h │ ├── glx_empty.c │ └── glxreply.c ├── applegl_glx.c ├── clientattrib.c ├── clientinfo.c ├── compsize.c ├── create_context.c ├── dri2.c ├── dri2.h ├── dri2_glx.c ├── dri2_priv.h ├── dri2_query_renderer.c ├── dri3_glx.c ├── dri3_priv.h ├── dri_common.c ├── dri_common.h ├── dri_glx.c ├── drisw_glx.c ├── eval.c ├── glx_error.c ├── glx_error.h ├── glx_pbuffer.c ├── glx_query.c ├── glxclient.h ├── glxcmds.c ├── glxconfig.c ├── glxconfig.h ├── glxcurrent.c ├── glxext.c ├── glxextensions.c ├── glxextensions.h ├── glxhash.c ├── glxhash.h ├── indirect_glx.c ├── indirect_init.h ├── indirect_texture_compression.c ├── indirect_transpose_matrix.c ├── indirect_vertex_array.c ├── indirect_vertex_array.h ├── indirect_vertex_array_priv.h ├── indirect_vertex_program.c ├── indirect_window_pos.c ├── packrender.h ├── packsingle.h ├── pixel.c ├── pixelstore.c ├── query_renderer.c ├── render2.c ├── renderpix.c ├── single2.c ├── singlepix.c ├── tests │ ├── .gitignore │ ├── Makefile.am │ ├── clientinfo_unittest.cpp │ ├── create_context_unittest.cpp │ ├── enum_sizes.cpp │ ├── fake_glx_screen.cpp │ ├── fake_glx_screen.h │ ├── indirect_api.cpp │ ├── mock_xdisplay.h │ ├── query_renderer_implementation_unittest.cpp │ └── query_renderer_unittest.cpp ├── vertarr.c ├── xf86dri.h ├── xf86dristr.h └── xfont.c ├── gtest ├── .gitignore ├── Makefile.am ├── include │ └── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-param-test.h.pump │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util-generated.h.pump │ │ ├── gtest-param-util.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ ├── gtest-tuple.h.pump │ │ ├── gtest-type-util.h │ │ └── gtest-type-util.h.pump └── src │ ├── gtest-all.cc │ ├── gtest-death-test.cc │ ├── gtest-filepath.cc │ ├── gtest-internal-inl.h │ ├── gtest-port.cc │ ├── gtest-printers.cc │ ├── gtest-test-part.cc │ ├── gtest-typed-test.cc │ ├── gtest.cc │ └── gtest_main.cc ├── hgl ├── GLDispatcher.cpp ├── GLDispatcher.h ├── GLRenderer.cpp ├── GLRendererRoster.cpp ├── GLRendererRoster.h ├── GLView.cpp └── SConscript ├── loader ├── Android.mk ├── Makefile.am ├── Makefile.sources ├── SConscript ├── loader.c ├── loader.h ├── pci_id_driver_map.c └── pci_id_driver_map.h ├── mapi ├── Android.mk ├── Makefile.am ├── Makefile.sources ├── entry.c ├── entry.h ├── entry_x86-64_tls.h ├── entry_x86_tls.h ├── entry_x86_tsd.h ├── es1api │ ├── .gitignore │ ├── ABI-check │ ├── Makefile.am │ └── glesv1_cm.pc.in ├── es2api │ ├── .gitignore │ ├── ABI-check │ ├── Makefile.am │ └── glesv2.pc.in ├── glapi │ ├── .gitignore │ ├── Makefile.am │ ├── Makefile.sources │ ├── SConscript │ ├── gen │ │ ├── AMD_draw_buffers_blend.xml │ │ ├── AMD_performance_monitor.xml │ │ ├── APPLE_object_purgeable.xml │ │ ├── APPLE_vertex_array_object.xml │ │ ├── ARB_ES2_compatibility.xml │ │ ├── ARB_ES3_compatibility.xml │ │ ├── ARB_base_instance.xml │ │ ├── ARB_blend_func_extended.xml │ │ ├── ARB_clear_buffer_object.xml │ │ ├── ARB_color_buffer_float.xml │ │ ├── ARB_copy_buffer.xml │ │ ├── ARB_debug_output.xml │ │ ├── ARB_depth_buffer_float.xml │ │ ├── ARB_depth_clamp.xml │ │ ├── ARB_draw_buffers.xml │ │ ├── ARB_draw_buffers_blend.xml │ │ ├── ARB_draw_elements_base_vertex.xml │ │ ├── ARB_draw_indirect.xml │ │ ├── ARB_draw_instanced.xml │ │ ├── ARB_framebuffer_object.xml │ │ ├── ARB_geometry_shader4.xml │ │ ├── ARB_get_program_binary.xml │ │ ├── ARB_instanced_arrays.xml │ │ ├── ARB_internalformat_query.xml │ │ ├── ARB_invalidate_subdata.xml │ │ ├── ARB_map_buffer_range.xml │ │ ├── ARB_robustness.xml │ │ ├── ARB_sample_shading.xml │ │ ├── ARB_sampler_objects.xml │ │ ├── ARB_seamless_cube_map.xml │ │ ├── ARB_shader_atomic_counters.xml │ │ ├── ARB_shader_image_load_store.xml │ │ ├── ARB_sync.xml │ │ ├── ARB_texture_buffer_object.xml │ │ ├── ARB_texture_buffer_range.xml │ │ ├── ARB_texture_compression_rgtc.xml │ │ ├── ARB_texture_cube_map_array.xml │ │ ├── ARB_texture_float.xml │ │ ├── ARB_texture_gather.xml │ │ ├── ARB_texture_multisample.xml │ │ ├── ARB_texture_rg.xml │ │ ├── ARB_texture_rgb10_a2ui.xml │ │ ├── ARB_texture_storage.xml │ │ ├── ARB_texture_storage_multisample.xml │ │ ├── ARB_texture_view.xml │ │ ├── ARB_uniform_buffer_object.xml │ │ ├── ARB_vertex_array_object.xml │ │ ├── ARB_vertex_attrib_binding.xml │ │ ├── ARB_vertex_type_2_10_10_10_rev.xml │ │ ├── ARB_viewport_array.xml │ │ ├── EXT_draw_buffers2.xml │ │ ├── EXT_framebuffer_object.xml │ │ ├── EXT_gpu_shader4.xml │ │ ├── EXT_packed_depth_stencil.xml │ │ ├── EXT_provoking_vertex.xml │ │ ├── EXT_separate_shader_objects.xml │ │ ├── EXT_texture_array.xml │ │ ├── EXT_texture_integer.xml │ │ ├── EXT_transform_feedback.xml │ │ ├── GL3x.xml │ │ ├── GL4x.xml │ │ ├── Makefile.am │ │ ├── NV_conditional_render.xml │ │ ├── NV_primitive_restart.xml │ │ ├── NV_texture_barrier.xml │ │ ├── NV_vdpau_interop.xml │ │ ├── OES_EGL_image.xml │ │ ├── OES_fixed_point.xml │ │ ├── OES_single_precision.xml │ │ ├── SConscript │ │ ├── es_EXT.xml │ │ ├── extension_helper.py │ │ ├── glX_API.xml │ │ ├── glX_XML.py │ │ ├── glX_doc.py │ │ ├── glX_proto_common.py │ │ ├── glX_proto_recv.py │ │ ├── glX_proto_send.py │ │ ├── glX_proto_size.py │ │ ├── glX_server_table.py │ │ ├── gl_API.dtd │ │ ├── gl_API.xml │ │ ├── gl_SPARC_asm.py │ │ ├── gl_XML.py │ │ ├── gl_and_es_API.xml │ │ ├── gl_and_glX_API.xml │ │ ├── gl_apitemp.py │ │ ├── gl_enums.py │ │ ├── gl_genexec.py │ │ ├── gl_gentable.py │ │ ├── gl_offsets.py │ │ ├── gl_procs.py │ │ ├── gl_table.py │ │ ├── gl_x86-64_asm.py │ │ ├── gl_x86_asm.py │ │ ├── glapi_gen.mk │ │ ├── license.py │ │ ├── mesadef.py │ │ ├── next_available_offset.sh │ │ ├── remap_helper.py │ │ └── typeexpr.py │ ├── glapi.c │ ├── glapi.h │ ├── glapi_dispatch.c │ ├── glapi_entrypoint.c │ ├── glapi_getproc.c │ ├── glapi_nop.c │ ├── glapi_priv.h │ ├── glthread.c │ ├── glthread.h │ └── tests │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── check_table.cpp ├── mapi.c ├── mapi.h ├── mapi_abi.py ├── mapi_glapi.c ├── mapi_tmp.h ├── shared-glapi │ ├── .gitignore │ ├── Makefile.am │ ├── SConscript │ └── tests │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── check_table.cpp ├── stub.c ├── stub.h ├── table.c ├── table.h ├── u_compiler.h ├── u_current.c ├── u_current.h ├── u_execmem.c ├── u_execmem.h ├── u_macros.h ├── u_thread.h └── vgapi │ ├── .gitignore │ ├── Makefile.am │ ├── SConscript │ ├── vg.pc.in │ └── vgapi.csv └── mesa ├── .gitignore ├── Android.gen.mk ├── Android.libmesa_dricore.mk ├── Android.libmesa_glsl_utils.mk ├── Android.libmesa_st_mesa.mk ├── Android.mesa_gen_matypes.mk ├── Android.mk ├── Makefile.am ├── Makefile.sources ├── SConscript ├── drivers ├── SConscript ├── common │ ├── driverfuncs.c │ ├── driverfuncs.h │ ├── meta.c │ └── meta.h ├── dri │ ├── Android.mk │ ├── Makefile.am │ ├── common │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── SConscript │ │ ├── dri_test.c │ │ ├── dri_util.c │ │ ├── dri_util.h │ │ ├── drirc │ │ ├── megadriver_stub.c │ │ ├── mmio.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── xmlconfig.c │ │ ├── xmlconfig.h │ │ ├── xmlpool.h │ │ └── xmlpool │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── SConscript │ │ │ ├── ca.po │ │ │ ├── de.po │ │ │ ├── es.po │ │ │ ├── fr.po │ │ │ ├── gen_xmlpool.py │ │ │ ├── nl.po │ │ │ ├── sv.po │ │ │ └── t_options.h │ ├── dri.pc.in │ ├── gen-symbol-redefs.py │ ├── i915 │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── i830_context.c │ │ ├── i830_context.h │ │ ├── i830_reg.h │ │ ├── i830_state.c │ │ ├── i830_texblend.c │ │ ├── i830_texstate.c │ │ ├── i830_vtbl.c │ │ ├── i915_context.c │ │ ├── i915_context.h │ │ ├── i915_debug.h │ │ ├── i915_debug_fp.c │ │ ├── i915_fragprog.c │ │ ├── i915_program.c │ │ ├── i915_program.h │ │ ├── i915_reg.h │ │ ├── i915_state.c │ │ ├── i915_tex_layout.c │ │ ├── i915_texstate.c │ │ ├── i915_vtbl.c │ │ ├── intel_batchbuffer.c │ │ ├── intel_batchbuffer.h │ │ ├── intel_blit.c │ │ ├── intel_blit.h │ │ ├── intel_buffer_objects.c │ │ ├── intel_buffer_objects.h │ │ ├── intel_buffers.c │ │ ├── intel_buffers.h │ │ ├── intel_chipset.h │ │ ├── intel_clear.c │ │ ├── intel_clear.h │ │ ├── intel_context.c │ │ ├── intel_context.h │ │ ├── intel_extensions.c │ │ ├── intel_extensions.h │ │ ├── intel_fbo.c │ │ ├── intel_fbo.h │ │ ├── intel_mipmap_tree.c │ │ ├── intel_mipmap_tree.h │ │ ├── intel_pixel.c │ │ ├── intel_pixel.h │ │ ├── intel_pixel_bitmap.c │ │ ├── intel_pixel_copy.c │ │ ├── intel_pixel_draw.c │ │ ├── intel_pixel_read.c │ │ ├── intel_reg.h │ │ ├── intel_regions.c │ │ ├── intel_regions.h │ │ ├── intel_render.c │ │ ├── intel_screen.c │ │ ├── intel_screen.h │ │ ├── intel_state.c │ │ ├── intel_syncobj.c │ │ ├── intel_tex.c │ │ ├── intel_tex.h │ │ ├── intel_tex_copy.c │ │ ├── intel_tex_image.c │ │ ├── intel_tex_layout.c │ │ ├── intel_tex_layout.h │ │ ├── intel_tex_obj.h │ │ ├── intel_tex_subimage.c │ │ ├── intel_tex_validate.c │ │ ├── intel_tris.c │ │ └── intel_tris.h │ ├── i965 │ │ ├── .gitignore │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── brw_binding_tables.c │ │ ├── brw_blorp.cpp │ │ ├── brw_blorp.h │ │ ├── brw_blorp_blit.cpp │ │ ├── brw_blorp_blit_eu.cpp │ │ ├── brw_blorp_blit_eu.h │ │ ├── brw_blorp_clear.cpp │ │ ├── brw_cc.c │ │ ├── brw_cfg.cpp │ │ ├── brw_cfg.h │ │ ├── brw_clear.c │ │ ├── brw_clip.c │ │ ├── brw_clip.h │ │ ├── brw_clip_line.c │ │ ├── brw_clip_point.c │ │ ├── brw_clip_state.c │ │ ├── brw_clip_tri.c │ │ ├── brw_clip_unfilled.c │ │ ├── brw_clip_util.c │ │ ├── brw_context.c │ │ ├── brw_context.h │ │ ├── brw_cubemap_normalize.cpp │ │ ├── brw_curbe.c │ │ ├── brw_dead_control_flow.cpp │ │ ├── brw_dead_control_flow.h │ │ ├── brw_defines.h │ │ ├── brw_device_info.c │ │ ├── brw_device_info.h │ │ ├── brw_disasm.c │ │ ├── brw_draw.c │ │ ├── brw_draw.h │ │ ├── brw_draw_upload.c │ │ ├── brw_eu.c │ │ ├── brw_eu.h │ │ ├── brw_eu_compact.c │ │ ├── brw_eu_emit.c │ │ ├── brw_eu_util.c │ │ ├── brw_fs.cpp │ │ ├── brw_fs.h │ │ ├── brw_fs_channel_expressions.cpp │ │ ├── brw_fs_copy_propagation.cpp │ │ ├── brw_fs_cse.cpp │ │ ├── brw_fs_fp.cpp │ │ ├── brw_fs_generator.cpp │ │ ├── brw_fs_live_variables.cpp │ │ ├── brw_fs_live_variables.h │ │ ├── brw_fs_peephole_predicated_break.cpp │ │ ├── brw_fs_reg_allocate.cpp │ │ ├── brw_fs_saturate_propagation.cpp │ │ ├── brw_fs_sel_peephole.cpp │ │ ├── brw_fs_vector_splitting.cpp │ │ ├── brw_fs_visitor.cpp │ │ ├── brw_gs.c │ │ ├── brw_gs.h │ │ ├── brw_gs_emit.c │ │ ├── brw_gs_state.c │ │ ├── brw_gs_surface_state.c │ │ ├── brw_interpolation_map.c │ │ ├── brw_lower_offset_array.cpp │ │ ├── brw_lower_texture_gradients.cpp │ │ ├── brw_lower_unnormalized_offset.cpp │ │ ├── brw_misc_state.c │ │ ├── brw_multisample_state.h │ │ ├── brw_object_purgeable.c │ │ ├── brw_performance_monitor.c │ │ ├── brw_primitive_restart.c │ │ ├── brw_program.c │ │ ├── brw_program.h │ │ ├── brw_queryobj.c │ │ ├── brw_reg.h │ │ ├── brw_reset.c │ │ ├── brw_schedule_instructions.cpp │ │ ├── brw_sf.c │ │ ├── brw_sf.h │ │ ├── brw_sf_emit.c │ │ ├── brw_sf_state.c │ │ ├── brw_shader.cpp │ │ ├── brw_shader.h │ │ ├── brw_state.h │ │ ├── brw_state_batch.c │ │ ├── brw_state_cache.c │ │ ├── brw_state_dump.c │ │ ├── brw_state_upload.c │ │ ├── brw_structs.h │ │ ├── brw_surface_formats.c │ │ ├── brw_tex.c │ │ ├── brw_tex_layout.c │ │ ├── brw_urb.c │ │ ├── brw_util.c │ │ ├── brw_util.h │ │ ├── brw_vec4.cpp │ │ ├── brw_vec4.h │ │ ├── brw_vec4_copy_propagation.cpp │ │ ├── brw_vec4_generator.cpp │ │ ├── brw_vec4_gs.c │ │ ├── brw_vec4_gs.h │ │ ├── brw_vec4_gs_visitor.cpp │ │ ├── brw_vec4_gs_visitor.h │ │ ├── brw_vec4_live_variables.cpp │ │ ├── brw_vec4_live_variables.h │ │ ├── brw_vec4_reg_allocate.cpp │ │ ├── brw_vec4_visitor.cpp │ │ ├── brw_vec4_vp.cpp │ │ ├── brw_vec4_vs_visitor.cpp │ │ ├── brw_vs.c │ │ ├── brw_vs.h │ │ ├── brw_vs_state.c │ │ ├── brw_vs_surface_state.c │ │ ├── brw_wm.c │ │ ├── brw_wm.h │ │ ├── brw_wm_iz.cpp │ │ ├── brw_wm_sampler_state.c │ │ ├── brw_wm_state.c │ │ ├── brw_wm_surface_state.c │ │ ├── gen6_blorp.cpp │ │ ├── gen6_blorp.h │ │ ├── gen6_cc.c │ │ ├── gen6_clip_state.c │ │ ├── gen6_depthstencil.c │ │ ├── gen6_gs_state.c │ │ ├── gen6_multisample_state.c │ │ ├── gen6_queryobj.c │ │ ├── gen6_sampler_state.c │ │ ├── gen6_scissor_state.c │ │ ├── gen6_sf_state.c │ │ ├── gen6_sol.c │ │ ├── gen6_urb.c │ │ ├── gen6_viewport_state.c │ │ ├── gen6_vs_state.c │ │ ├── gen6_wm_state.c │ │ ├── gen7_blorp.cpp │ │ ├── gen7_blorp.h │ │ ├── gen7_disable.c │ │ ├── gen7_gs_state.c │ │ ├── gen7_misc_state.c │ │ ├── gen7_sampler_state.c │ │ ├── gen7_sf_state.c │ │ ├── gen7_sol_state.c │ │ ├── gen7_urb.c │ │ ├── gen7_viewport_state.c │ │ ├── gen7_vs_state.c │ │ ├── gen7_wm_state.c │ │ ├── gen7_wm_surface_state.c │ │ ├── gen8_blend_state.c │ │ ├── gen8_depth_state.c │ │ ├── gen8_disable.c │ │ ├── gen8_disasm.c │ │ ├── gen8_draw_upload.c │ │ ├── gen8_fs_generator.cpp │ │ ├── gen8_generator.cpp │ │ ├── gen8_generator.h │ │ ├── gen8_gs_state.c │ │ ├── gen8_instruction.c │ │ ├── gen8_instruction.h │ │ ├── gen8_misc_state.c │ │ ├── gen8_multisample_state.c │ │ ├── gen8_ps_state.c │ │ ├── gen8_sf_state.c │ │ ├── gen8_sol_state.c │ │ ├── gen8_surface_state.c │ │ ├── gen8_vec4_generator.cpp │ │ ├── gen8_viewport_state.c │ │ ├── gen8_vs_state.c │ │ ├── gen8_wm_depth_stencil.c │ │ ├── intel_batchbuffer.c │ │ ├── intel_batchbuffer.h │ │ ├── intel_blit.c │ │ ├── intel_blit.h │ │ ├── intel_buffer_objects.c │ │ ├── intel_buffer_objects.h │ │ ├── intel_buffers.c │ │ ├── intel_buffers.h │ │ ├── intel_chipset.h │ │ ├── intel_debug.c │ │ ├── intel_debug.h │ │ ├── intel_extensions.c │ │ ├── intel_fbo.c │ │ ├── intel_fbo.h │ │ ├── intel_mipmap_tree.c │ │ ├── intel_mipmap_tree.h │ │ ├── intel_pixel.c │ │ ├── intel_pixel.h │ │ ├── intel_pixel_bitmap.c │ │ ├── intel_pixel_copy.c │ │ ├── intel_pixel_draw.c │ │ ├── intel_pixel_read.c │ │ ├── intel_reg.h │ │ ├── intel_regions.c │ │ ├── intel_regions.h │ │ ├── intel_resolve_map.c │ │ ├── intel_resolve_map.h │ │ ├── intel_screen.c │ │ ├── intel_screen.h │ │ ├── intel_state.c │ │ ├── intel_syncobj.c │ │ ├── intel_tex.c │ │ ├── intel_tex.h │ │ ├── intel_tex_copy.c │ │ ├── intel_tex_image.c │ │ ├── intel_tex_obj.h │ │ ├── intel_tex_subimage.c │ │ ├── intel_tex_validate.c │ │ ├── intel_upload.c │ │ ├── test_blorp_blit_eu_gen.cpp │ │ ├── test_eu_compact.c │ │ └── test_vec4_register_coalesce.cpp │ ├── nouveau │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── nouveau_array.c │ │ ├── nouveau_array.h │ │ ├── nouveau_bufferobj.c │ │ ├── nouveau_bufferobj.h │ │ ├── nouveau_context.c │ │ ├── nouveau_context.h │ │ ├── nouveau_driver.c │ │ ├── nouveau_driver.h │ │ ├── nouveau_fbo.c │ │ ├── nouveau_fbo.h │ │ ├── nouveau_gldefs.h │ │ ├── nouveau_local.h │ │ ├── nouveau_render.h │ │ ├── nouveau_render_t.c │ │ ├── nouveau_scratch.c │ │ ├── nouveau_scratch.h │ │ ├── nouveau_screen.c │ │ ├── nouveau_screen.h │ │ ├── nouveau_span.c │ │ ├── nouveau_state.c │ │ ├── nouveau_state.h │ │ ├── nouveau_surface.c │ │ ├── nouveau_surface.h │ │ ├── nouveau_swtnl_t.c │ │ ├── nouveau_texture.c │ │ ├── nouveau_texture.h │ │ ├── nouveau_util.h │ │ ├── nouveau_vbo_t.c │ │ ├── nv01_2d.xml.h │ │ ├── nv04_3d.xml.h │ │ ├── nv04_context.c │ │ ├── nv04_context.h │ │ ├── nv04_driver.h │ │ ├── nv04_render.c │ │ ├── nv04_state_fb.c │ │ ├── nv04_state_frag.c │ │ ├── nv04_state_raster.c │ │ ├── nv04_state_tex.c │ │ ├── nv04_surface.c │ │ ├── nv10_3d.xml.h │ │ ├── nv10_context.c │ │ ├── nv10_driver.h │ │ ├── nv10_render.c │ │ ├── nv10_state_fb.c │ │ ├── nv10_state_frag.c │ │ ├── nv10_state_polygon.c │ │ ├── nv10_state_raster.c │ │ ├── nv10_state_tex.c │ │ ├── nv10_state_tnl.c │ │ ├── nv20_3d.xml.h │ │ ├── nv20_context.c │ │ ├── nv20_driver.h │ │ ├── nv20_render.c │ │ ├── nv20_state_fb.c │ │ ├── nv20_state_frag.c │ │ ├── nv20_state_polygon.c │ │ ├── nv20_state_raster.c │ │ ├── nv20_state_tex.c │ │ ├── nv20_state_tnl.c │ │ ├── nv_m2mf.xml.h │ │ └── nv_object.xml.h │ ├── r200 │ │ ├── Doxyfile │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── r200_blit.c │ │ ├── r200_blit.h │ │ ├── r200_cmdbuf.c │ │ ├── r200_context.c │ │ ├── r200_context.h │ │ ├── r200_fragshader.c │ │ ├── r200_ioctl.c │ │ ├── r200_ioctl.h │ │ ├── r200_maos.c │ │ ├── r200_maos.h │ │ ├── r200_maos_arrays.c │ │ ├── r200_reg.h │ │ ├── r200_sanity.c │ │ ├── r200_sanity.h │ │ ├── r200_state.c │ │ ├── r200_state.h │ │ ├── r200_state_init.c │ │ ├── r200_swtcl.c │ │ ├── r200_swtcl.h │ │ ├── r200_tcl.c │ │ ├── r200_tcl.h │ │ ├── r200_tex.c │ │ ├── r200_tex.h │ │ ├── r200_texstate.c │ │ ├── r200_vertprog.c │ │ ├── r200_vertprog.h │ │ ├── radeon_buffer_objects.c │ │ ├── radeon_buffer_objects.h │ │ ├── radeon_chipset.h │ │ ├── radeon_cmdbuf.h │ │ ├── radeon_common.c │ │ ├── radeon_common.h │ │ ├── radeon_common_context.c │ │ ├── radeon_common_context.h │ │ ├── radeon_debug.c │ │ ├── radeon_debug.h │ │ ├── radeon_dma.c │ │ ├── radeon_dma.h │ │ ├── radeon_fbo.c │ │ ├── radeon_fog.c │ │ ├── radeon_fog.h │ │ ├── radeon_mipmap_tree.c │ │ ├── radeon_mipmap_tree.h │ │ ├── radeon_pixel_read.c │ │ ├── radeon_queryobj.c │ │ ├── radeon_queryobj.h │ │ ├── radeon_screen.c │ │ ├── radeon_screen.h │ │ ├── radeon_span.c │ │ ├── radeon_span.h │ │ ├── radeon_tex_copy.c │ │ ├── radeon_texture.c │ │ ├── radeon_texture.h │ │ ├── radeon_tile.c │ │ ├── radeon_tile.h │ │ └── server │ │ │ ├── radeon_dri.h │ │ │ ├── radeon_macros.h │ │ │ └── radeon_reg.h │ ├── radeon │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── radeon_blit.c │ │ ├── radeon_blit.h │ │ ├── radeon_buffer_objects.c │ │ ├── radeon_buffer_objects.h │ │ ├── radeon_chipset.h │ │ ├── radeon_cmdbuf.h │ │ ├── radeon_common.c │ │ ├── radeon_common.h │ │ ├── radeon_common_context.c │ │ ├── radeon_common_context.h │ │ ├── radeon_context.c │ │ ├── radeon_context.h │ │ ├── radeon_debug.c │ │ ├── radeon_debug.h │ │ ├── radeon_dma.c │ │ ├── radeon_dma.h │ │ ├── radeon_fbo.c │ │ ├── radeon_fog.c │ │ ├── radeon_fog.h │ │ ├── radeon_ioctl.c │ │ ├── radeon_ioctl.h │ │ ├── radeon_maos.c │ │ ├── radeon_maos.h │ │ ├── radeon_maos_arrays.c │ │ ├── radeon_maos_vbtmp.h │ │ ├── radeon_maos_verts.c │ │ ├── radeon_mipmap_tree.c │ │ ├── radeon_mipmap_tree.h │ │ ├── radeon_pixel_read.c │ │ ├── radeon_queryobj.c │ │ ├── radeon_queryobj.h │ │ ├── radeon_sanity.c │ │ ├── radeon_sanity.h │ │ ├── radeon_screen.c │ │ ├── radeon_screen.h │ │ ├── radeon_span.c │ │ ├── radeon_span.h │ │ ├── radeon_state.c │ │ ├── radeon_state.h │ │ ├── radeon_state_init.c │ │ ├── radeon_swtcl.c │ │ ├── radeon_swtcl.h │ │ ├── radeon_tcl.c │ │ ├── radeon_tcl.h │ │ ├── radeon_tex.c │ │ ├── radeon_tex.h │ │ ├── radeon_tex_copy.c │ │ ├── radeon_texstate.c │ │ ├── radeon_texture.c │ │ ├── radeon_texture.h │ │ ├── radeon_tile.c │ │ ├── radeon_tile.h │ │ └── server │ │ │ ├── radeon_dri.h │ │ │ ├── radeon_macros.h │ │ │ └── radeon_reg.h │ └── swrast │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── swrast.c │ │ └── swrast_priv.h ├── haiku │ └── swrast │ │ ├── SConscript │ │ ├── SoftwareRast.cpp │ │ ├── SoftwareRast.h │ │ └── SoftwareRast.rdef ├── osmesa │ ├── Makefile.am │ ├── SConscript │ ├── osmesa.c │ ├── osmesa.def │ └── osmesa.pc.in ├── windows │ └── gdi │ │ ├── SConscript │ │ ├── colors.h │ │ ├── mesa.def │ │ ├── wgl.c │ │ ├── wmesa.c │ │ └── wmesadef.h └── x11 │ ├── Makefile.am │ ├── SConscript │ ├── fakeglx.c │ ├── glxapi.c │ ├── glxapi.h │ ├── glxheader.h │ ├── realglx.c │ ├── realglx.h │ ├── xfonts.c │ ├── xfonts.h │ ├── xm_api.c │ ├── xm_buffer.c │ ├── xm_dd.c │ ├── xm_line.c │ ├── xm_tri.c │ ├── xmesa.h │ ├── xmesaP.h │ └── xmesa_x.h ├── gl.pc.in ├── main ├── .gitignore ├── accum.c ├── accum.h ├── api_arrayelt.c ├── api_arrayelt.h ├── api_exec.h ├── api_loopback.c ├── api_loopback.h ├── api_validate.c ├── api_validate.h ├── arbprogram.c ├── arbprogram.h ├── arrayobj.c ├── arrayobj.h ├── atifragshader.c ├── atifragshader.h ├── attrib.c ├── attrib.h ├── bitset.h ├── blend.c ├── blend.h ├── blit.c ├── blit.h ├── bufferobj.c ├── bufferobj.h ├── buffers.c ├── buffers.h ├── clear.c ├── clear.h ├── clip.c ├── clip.h ├── colormac.h ├── colortab.c ├── colortab.h ├── compiler.h ├── condrender.c ├── condrender.h ├── config.h ├── context.c ├── context.h ├── convolve.c ├── convolve.h ├── core.h ├── cpuinfo.c ├── cpuinfo.h ├── dd.h ├── debug.c ├── debug.h ├── depth.c ├── depth.h ├── dlist.c ├── dlist.h ├── dlopen.h ├── drawpix.c ├── drawpix.h ├── drawtex.c ├── drawtex.h ├── enable.c ├── enable.h ├── enums.h ├── errors.c ├── errors.h ├── es1_conversion.c ├── es1_conversion.h ├── eval.c ├── eval.h ├── execmem.c ├── extensions.c ├── extensions.h ├── fbobject.c ├── fbobject.h ├── feedback.c ├── feedback.h ├── ff_fragment_shader.cpp ├── ffvertex_prog.c ├── ffvertex_prog.h ├── fog.c ├── fog.h ├── format_pack.c ├── format_pack.h ├── format_unpack.c ├── format_unpack.h ├── formatquery.c ├── formatquery.h ├── formats.c ├── formats.h ├── framebuffer.c ├── framebuffer.h ├── genmipmap.c ├── genmipmap.h ├── get.c ├── get.h ├── get_hash_generator.py ├── get_hash_params.py ├── getstring.c ├── glformats.c ├── glformats.h ├── glheader.h ├── hash.c ├── hash.h ├── hash_table.c ├── hash_table.h ├── hint.c ├── hint.h ├── histogram.c ├── histogram.h ├── image.c ├── image.h ├── imports.c ├── imports.h ├── light.c ├── light.h ├── lines.c ├── lines.h ├── macros.h ├── matrix.c ├── matrix.h ├── mipmap.c ├── mipmap.h ├── mm.c ├── mm.h ├── mtypes.h ├── multisample.c ├── multisample.h ├── objectlabel.c ├── objectlabel.h ├── pack.c ├── pack.h ├── pack_tmp.h ├── pbo.c ├── pbo.h ├── performance_monitor.c ├── performance_monitor.h ├── pixel.c ├── pixel.h ├── pixelstore.c ├── pixelstore.h ├── pixeltransfer.c ├── pixeltransfer.h ├── points.c ├── points.h ├── polygon.c ├── polygon.h ├── querymatrix.c ├── querymatrix.h ├── queryobj.c ├── queryobj.h ├── rastpos.c ├── rastpos.h ├── readpix.c ├── readpix.h ├── remap.c ├── remap.h ├── renderbuffer.c ├── renderbuffer.h ├── samplerobj.c ├── samplerobj.h ├── scissor.c ├── scissor.h ├── set.c ├── set.h ├── shader_query.cpp ├── shaderapi.c ├── shaderapi.h ├── shaderimage.c ├── shaderimage.h ├── shaderobj.c ├── shaderobj.h ├── shared.c ├── shared.h ├── simple_list.h ├── state.c ├── state.h ├── stencil.c ├── stencil.h ├── streaming-load-memcpy.c ├── streaming-load-memcpy.h ├── syncobj.c ├── syncobj.h ├── tests │ ├── .gitignore │ ├── Makefile.am │ ├── dispatch_sanity.cpp │ ├── enum_strings.cpp │ ├── hash_table │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── collision.c │ │ ├── delete_and_lookup.c │ │ ├── delete_management.c │ │ ├── destroy_callback.c │ │ ├── insert_and_lookup.c │ │ ├── insert_many.c │ │ ├── null_destroy.c │ │ ├── random_entry.c │ │ ├── remove_null.c │ │ └── replacement.c │ ├── program_state_string.cpp │ └── stubs.cpp ├── texcompress.c ├── texcompress.h ├── texcompress_cpal.c ├── texcompress_cpal.h ├── texcompress_etc.c ├── texcompress_etc.h ├── texcompress_etc_tmp.h ├── texcompress_fxt1.c ├── texcompress_fxt1.h ├── texcompress_rgtc.c ├── texcompress_rgtc.h ├── texcompress_rgtc_tmp.h ├── texcompress_s3tc.c ├── texcompress_s3tc.h ├── texenv.c ├── texenv.h ├── texenvprogram.h ├── texformat.c ├── texformat.h ├── texgen.c ├── texgen.h ├── texgetimage.c ├── texgetimage.h ├── teximage.c ├── teximage.h ├── texobj.c ├── texobj.h ├── texparam.c ├── texparam.h ├── texstate.c ├── texstate.h ├── texstorage.c ├── texstorage.h ├── texstore.c ├── texstore.h ├── texturebarrier.c ├── texturebarrier.h ├── textureview.c ├── textureview.h ├── transformfeedback.c ├── transformfeedback.h ├── uniform_query.cpp ├── uniforms.c ├── uniforms.h ├── varray.c ├── varray.h ├── vdpau.c ├── vdpau.h ├── version.c ├── version.h ├── viewport.c ├── viewport.h ├── vtxfmt.c └── vtxfmt.h ├── math ├── m_clip_tmp.h ├── m_copy_tmp.h ├── m_debug.h ├── m_debug_clip.c ├── m_debug_norm.c ├── m_debug_util.h ├── m_debug_xform.c ├── m_dotprod_tmp.h ├── m_eval.c ├── m_eval.h ├── m_matrix.c ├── m_matrix.h ├── m_norm_tmp.h ├── m_trans_tmp.h ├── m_translate.c ├── m_translate.h ├── m_vector.c ├── m_vector.h ├── m_xform.c ├── m_xform.h └── m_xform_tmp.h ├── program ├── .gitignore ├── Android.mk ├── arbprogparse.c ├── arbprogparse.h ├── hash_table.h ├── ir_to_mesa.cpp ├── ir_to_mesa.h ├── prog_cache.c ├── prog_cache.h ├── prog_execute.c ├── prog_execute.h ├── prog_hash_table.c ├── prog_instruction.c ├── prog_instruction.h ├── prog_noise.c ├── prog_noise.h ├── prog_opt_constant_fold.c ├── prog_optimize.c ├── prog_optimize.h ├── prog_parameter.c ├── prog_parameter.h ├── prog_parameter_layout.c ├── prog_parameter_layout.h ├── prog_print.c ├── prog_print.h ├── prog_statevars.c ├── prog_statevars.h ├── program.c ├── program.h ├── program_lexer.l ├── program_parse.y ├── program_parse_extra.c ├── program_parser.h ├── programopt.c ├── programopt.h ├── register_allocate.c ├── register_allocate.h ├── sampler.cpp ├── sampler.h ├── string_to_uint_map.cpp ├── symbol_table.c └── symbol_table.h ├── sparc ├── norm.S ├── sparc.c ├── sparc.h ├── sparc_clip.S ├── sparc_matrix.h └── xform.S ├── state_tracker ├── st_atom.c ├── st_atom.h ├── st_atom_array.c ├── st_atom_blend.c ├── st_atom_clip.c ├── st_atom_constbuf.c ├── st_atom_constbuf.h ├── st_atom_depth.c ├── st_atom_framebuffer.c ├── st_atom_msaa.c ├── st_atom_pixeltransfer.c ├── st_atom_rasterizer.c ├── st_atom_sampler.c ├── st_atom_scissor.c ├── st_atom_shader.c ├── st_atom_shader.h ├── st_atom_stipple.c ├── st_atom_texture.c ├── st_atom_viewport.c ├── st_cache.h ├── st_cb_bitmap.c ├── st_cb_bitmap.h ├── st_cb_blit.c ├── st_cb_blit.h ├── st_cb_bufferobjects.c ├── st_cb_bufferobjects.h ├── st_cb_clear.c ├── st_cb_clear.h ├── st_cb_condrender.c ├── st_cb_condrender.h ├── st_cb_drawpixels.c ├── st_cb_drawpixels.h ├── st_cb_drawtex.c ├── st_cb_drawtex.h ├── st_cb_eglimage.c ├── st_cb_eglimage.h ├── st_cb_fbo.c ├── st_cb_fbo.h ├── st_cb_feedback.c ├── st_cb_feedback.h ├── st_cb_flush.c ├── st_cb_flush.h ├── st_cb_msaa.c ├── st_cb_msaa.h ├── st_cb_program.c ├── st_cb_program.h ├── st_cb_queryobj.c ├── st_cb_queryobj.h ├── st_cb_rasterpos.c ├── st_cb_rasterpos.h ├── st_cb_readpixels.c ├── st_cb_readpixels.h ├── st_cb_strings.c ├── st_cb_strings.h ├── st_cb_syncobj.c ├── st_cb_syncobj.h ├── st_cb_texture.c ├── st_cb_texture.h ├── st_cb_texturebarrier.c ├── st_cb_texturebarrier.h ├── st_cb_viewport.c ├── st_cb_viewport.h ├── st_cb_xformfb.c ├── st_cb_xformfb.h ├── st_context.c ├── st_context.h ├── st_debug.c ├── st_debug.h ├── st_draw.c ├── st_draw.h ├── st_draw_feedback.c ├── st_extensions.c ├── st_extensions.h ├── st_format.c ├── st_format.h ├── st_gen_mipmap.c ├── st_gen_mipmap.h ├── st_gl_api.h ├── st_glsl_to_tgsi.cpp ├── st_glsl_to_tgsi.h ├── st_manager.c ├── st_manager.h ├── st_mesa_to_tgsi.c ├── st_mesa_to_tgsi.h ├── st_program.c ├── st_program.h ├── st_texture.c ├── st_texture.h ├── st_vdpau.c └── st_vdpau.h ├── swrast ├── NOTES ├── s_aaline.c ├── s_aaline.h ├── s_aalinetemp.h ├── s_aatriangle.c ├── s_aatriangle.h ├── s_aatritemp.h ├── s_alpha.c ├── s_alpha.h ├── s_atifragshader.c ├── s_atifragshader.h ├── s_bitmap.c ├── s_blend.c ├── s_blend.h ├── s_blit.c ├── s_chan.h ├── s_clear.c ├── s_context.c ├── s_context.h ├── s_copypix.c ├── s_depth.c ├── s_depth.h ├── s_drawpix.c ├── s_feedback.c ├── s_feedback.h ├── s_fog.c ├── s_fog.h ├── s_fragprog.c ├── s_fragprog.h ├── s_lines.c ├── s_lines.h ├── s_linetemp.h ├── s_logic.c ├── s_logic.h ├── s_masking.c ├── s_masking.h ├── s_points.c ├── s_points.h ├── s_renderbuffer.c ├── s_renderbuffer.h ├── s_span.c ├── s_span.h ├── s_stencil.c ├── s_stencil.h ├── s_texcombine.c ├── s_texcombine.h ├── s_texfetch.c ├── s_texfetch.h ├── s_texfetch_tmp.h ├── s_texfilter.c ├── s_texfilter.h ├── s_texrender.c ├── s_texture.c ├── s_triangle.c ├── s_triangle.h ├── s_tritemp.h ├── s_zoom.c ├── s_zoom.h └── swrast.h ├── swrast_setup ├── NOTES ├── ss_context.c ├── ss_context.h ├── ss_triangle.c ├── ss_triangle.h ├── ss_tritmp.h ├── ss_vb.h └── swrast_setup.h ├── tnl ├── NOTES ├── t_context.c ├── t_context.h ├── t_draw.c ├── t_pipeline.c ├── t_pipeline.h ├── t_rasterpos.c ├── t_vb_cliptmp.h ├── t_vb_fog.c ├── t_vb_light.c ├── t_vb_lighttmp.h ├── t_vb_normals.c ├── t_vb_points.c ├── t_vb_program.c ├── t_vb_render.c ├── t_vb_rendertmp.h ├── t_vb_texgen.c ├── t_vb_texmat.c ├── t_vb_vertex.c ├── t_vertex.c ├── t_vertex.h ├── t_vertex_generic.c ├── t_vertex_sse.c ├── t_vp_build.c ├── t_vp_build.h └── tnl.h ├── tnl_dd ├── t_dd_dmatmp.h ├── t_dd_dmatmp2.h ├── t_dd_triemit.h ├── t_dd_tritmp.h ├── t_dd_unfilled.h ├── t_dd_vb.c └── t_dd_vertex.h ├── vbo ├── vbo.h ├── vbo_attrib.h ├── vbo_attrib_tmp.h ├── vbo_context.c ├── vbo_context.h ├── vbo_exec.c ├── vbo_exec.h ├── vbo_exec_api.c ├── vbo_exec_array.c ├── vbo_exec_draw.c ├── vbo_exec_eval.c ├── vbo_noop.c ├── vbo_noop.h ├── vbo_primitive_restart.c ├── vbo_rebase.c ├── vbo_save.c ├── vbo_save.h ├── vbo_save_api.c ├── vbo_save_draw.c ├── vbo_save_loopback.c ├── vbo_split.c ├── vbo_split.h ├── vbo_split_copy.c └── vbo_split_inplace.c ├── x86-64 ├── calling_convention.txt ├── x86-64.c ├── x86-64.h └── xform4.S └── x86 ├── 3dnow.c ├── 3dnow.h ├── 3dnow_normal.S ├── 3dnow_xform1.S ├── 3dnow_xform2.S ├── 3dnow_xform3.S ├── 3dnow_xform4.S ├── assyntax.h ├── clip_args.h ├── common_x86.c ├── common_x86_asm.S ├── common_x86_asm.h ├── common_x86_features.h ├── gen_matypes.c ├── mmx.h ├── mmx_blend.S ├── mmx_blendtmp.h ├── norm_args.h ├── read_rgba_span_x86.S ├── rtasm ├── x86sse.c └── x86sse.h ├── sse.c ├── sse.h ├── sse_normal.S ├── sse_xform1.S ├── sse_xform2.S ├── sse_xform3.S ├── sse_xform4.S ├── x86_cliptest.S ├── x86_xform.c ├── x86_xform.h ├── x86_xform2.S ├── x86_xform3.S ├── x86_xform4.S └── xform_args.h /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/Android.common.mk -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/Android.mk -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/Makefile.am -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/SConstruct -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 10.1.6-steamos 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/autogen.sh -------------------------------------------------------------------------------- /bin/.cherry-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/bin/.cherry-ignore -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /bin/bugzilla_mesa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/bin/bugzilla_mesa.sh -------------------------------------------------------------------------------- /bin/get-pick-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/bin/get-pick-list.sh -------------------------------------------------------------------------------- /bin/perf-annotate-jit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/bin/perf-annotate-jit -------------------------------------------------------------------------------- /bin/shortlog_mesa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/bin/shortlog_mesa.sh -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/common.py -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/GL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/GL3.txt -------------------------------------------------------------------------------- /docs/README.UVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/README.UVD -------------------------------------------------------------------------------- /docs/README.WIN32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/README.WIN32 -------------------------------------------------------------------------------- /docs/VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/VERSIONS -------------------------------------------------------------------------------- /docs/application-issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/application-issues.html -------------------------------------------------------------------------------- /docs/autoconf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/autoconf.html -------------------------------------------------------------------------------- /docs/bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/bugs.html -------------------------------------------------------------------------------- /docs/conform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/conform.html -------------------------------------------------------------------------------- /docs/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/contents.html -------------------------------------------------------------------------------- /docs/debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/debugging.html -------------------------------------------------------------------------------- /docs/developers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/developers.html -------------------------------------------------------------------------------- /docs/devinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/devinfo.html -------------------------------------------------------------------------------- /docs/dispatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/dispatch.html -------------------------------------------------------------------------------- /docs/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/download.html -------------------------------------------------------------------------------- /docs/egl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/egl.html -------------------------------------------------------------------------------- /docs/envvars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/envvars.html -------------------------------------------------------------------------------- /docs/extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/extensions.html -------------------------------------------------------------------------------- /docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/faq.html -------------------------------------------------------------------------------- /docs/gears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/gears.png -------------------------------------------------------------------------------- /docs/helpwanted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/helpwanted.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/install.html -------------------------------------------------------------------------------- /docs/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/intro.html -------------------------------------------------------------------------------- /docs/libGL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/libGL.txt -------------------------------------------------------------------------------- /docs/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/license.html -------------------------------------------------------------------------------- /docs/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/lists.html -------------------------------------------------------------------------------- /docs/llvmpipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/llvmpipe.html -------------------------------------------------------------------------------- /docs/mangling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/mangling.html -------------------------------------------------------------------------------- /docs/mesa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/mesa.css -------------------------------------------------------------------------------- /docs/opengles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/opengles.html -------------------------------------------------------------------------------- /docs/openvg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/openvg.html -------------------------------------------------------------------------------- /docs/osmesa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/osmesa.html -------------------------------------------------------------------------------- /docs/patents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/patents.txt -------------------------------------------------------------------------------- /docs/perf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/perf.html -------------------------------------------------------------------------------- /docs/postprocess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/postprocess.html -------------------------------------------------------------------------------- /docs/precompiled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/precompiled.html -------------------------------------------------------------------------------- /docs/relnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes.html -------------------------------------------------------------------------------- /docs/relnotes/10.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.0.1.html -------------------------------------------------------------------------------- /docs/relnotes/10.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.0.2.html -------------------------------------------------------------------------------- /docs/relnotes/10.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.0.html -------------------------------------------------------------------------------- /docs/relnotes/10.1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.1.1.html -------------------------------------------------------------------------------- /docs/relnotes/10.1.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.1.2.html -------------------------------------------------------------------------------- /docs/relnotes/10.1.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.1.3.html -------------------------------------------------------------------------------- /docs/relnotes/10.1.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.1.4.html -------------------------------------------------------------------------------- /docs/relnotes/10.1.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.1.5.html -------------------------------------------------------------------------------- /docs/relnotes/10.1.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.1.6.html -------------------------------------------------------------------------------- /docs/relnotes/10.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/10.1.html -------------------------------------------------------------------------------- /docs/relnotes/3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.1 -------------------------------------------------------------------------------- /docs/relnotes/3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.2 -------------------------------------------------------------------------------- /docs/relnotes/3.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.2.1 -------------------------------------------------------------------------------- /docs/relnotes/3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.3 -------------------------------------------------------------------------------- /docs/relnotes/3.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.4 -------------------------------------------------------------------------------- /docs/relnotes/3.4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.4.1 -------------------------------------------------------------------------------- /docs/relnotes/3.4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.4.2 -------------------------------------------------------------------------------- /docs/relnotes/3.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/3.5 -------------------------------------------------------------------------------- /docs/relnotes/4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/4.0 -------------------------------------------------------------------------------- /docs/relnotes/4.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/4.0.1 -------------------------------------------------------------------------------- /docs/relnotes/4.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/4.0.2 -------------------------------------------------------------------------------- /docs/relnotes/4.0.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/4.0.3 -------------------------------------------------------------------------------- /docs/relnotes/4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/4.1 -------------------------------------------------------------------------------- /docs/relnotes/5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/5.0 -------------------------------------------------------------------------------- /docs/relnotes/5.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/5.0.1 -------------------------------------------------------------------------------- /docs/relnotes/5.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/5.0.2 -------------------------------------------------------------------------------- /docs/relnotes/5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/5.1 -------------------------------------------------------------------------------- /docs/relnotes/6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.0 -------------------------------------------------------------------------------- /docs/relnotes/6.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.0.1 -------------------------------------------------------------------------------- /docs/relnotes/6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.1 -------------------------------------------------------------------------------- /docs/relnotes/6.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.2 -------------------------------------------------------------------------------- /docs/relnotes/6.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.2.1 -------------------------------------------------------------------------------- /docs/relnotes/6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.3 -------------------------------------------------------------------------------- /docs/relnotes/6.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.3.1 -------------------------------------------------------------------------------- /docs/relnotes/6.3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.3.2 -------------------------------------------------------------------------------- /docs/relnotes/6.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.4 -------------------------------------------------------------------------------- /docs/relnotes/6.4.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.4.1.html -------------------------------------------------------------------------------- /docs/relnotes/6.4.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.4.2.html -------------------------------------------------------------------------------- /docs/relnotes/6.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.4.html -------------------------------------------------------------------------------- /docs/relnotes/6.5.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.5.1.html -------------------------------------------------------------------------------- /docs/relnotes/6.5.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.5.2.html -------------------------------------------------------------------------------- /docs/relnotes/6.5.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.5.3.html -------------------------------------------------------------------------------- /docs/relnotes/6.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/6.5.html -------------------------------------------------------------------------------- /docs/relnotes/7.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.0.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.0.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.0.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.0.3.html -------------------------------------------------------------------------------- /docs/relnotes/7.0.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.0.4.html -------------------------------------------------------------------------------- /docs/relnotes/7.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.0.html -------------------------------------------------------------------------------- /docs/relnotes/7.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.10.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.10.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.10.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.10.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.10.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.10.3.html -------------------------------------------------------------------------------- /docs/relnotes/7.10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.10.html -------------------------------------------------------------------------------- /docs/relnotes/7.11.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.11.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.11.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.11.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.11.html -------------------------------------------------------------------------------- /docs/relnotes/7.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.3.html -------------------------------------------------------------------------------- /docs/relnotes/7.4.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.4.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.4.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.4.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.4.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.4.3.html -------------------------------------------------------------------------------- /docs/relnotes/7.4.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.4.4.html -------------------------------------------------------------------------------- /docs/relnotes/7.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.4.html -------------------------------------------------------------------------------- /docs/relnotes/7.5.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.5.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.5.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.5.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.5.html -------------------------------------------------------------------------------- /docs/relnotes/7.6.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.6.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.6.html -------------------------------------------------------------------------------- /docs/relnotes/7.7.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.7.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.7.html -------------------------------------------------------------------------------- /docs/relnotes/7.8.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.8.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.8.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.8.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.8.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.8.3.html -------------------------------------------------------------------------------- /docs/relnotes/7.8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.8.html -------------------------------------------------------------------------------- /docs/relnotes/7.9.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.9.1.html -------------------------------------------------------------------------------- /docs/relnotes/7.9.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.9.2.html -------------------------------------------------------------------------------- /docs/relnotes/7.9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/7.9.html -------------------------------------------------------------------------------- /docs/relnotes/8.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/8.0.1.html -------------------------------------------------------------------------------- /docs/relnotes/8.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/8.0.2.html -------------------------------------------------------------------------------- /docs/relnotes/8.0.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/8.0.3.html -------------------------------------------------------------------------------- /docs/relnotes/8.0.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/8.0.4.html -------------------------------------------------------------------------------- /docs/relnotes/8.0.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/8.0.5.html -------------------------------------------------------------------------------- /docs/relnotes/8.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/8.0.html -------------------------------------------------------------------------------- /docs/relnotes/9.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.0.1.html -------------------------------------------------------------------------------- /docs/relnotes/9.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.0.2.html -------------------------------------------------------------------------------- /docs/relnotes/9.0.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.0.3.html -------------------------------------------------------------------------------- /docs/relnotes/9.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.0.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.1.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.2.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.3.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.4.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.5.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.6.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.7.html -------------------------------------------------------------------------------- /docs/relnotes/9.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.1.html -------------------------------------------------------------------------------- /docs/relnotes/9.2.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.2.1.html -------------------------------------------------------------------------------- /docs/relnotes/9.2.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.2.2.html -------------------------------------------------------------------------------- /docs/relnotes/9.2.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.2.3.html -------------------------------------------------------------------------------- /docs/relnotes/9.2.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.2.4.html -------------------------------------------------------------------------------- /docs/relnotes/9.2.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.2.5.html -------------------------------------------------------------------------------- /docs/relnotes/9.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/relnotes/9.2.html -------------------------------------------------------------------------------- /docs/repository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/repository.html -------------------------------------------------------------------------------- /docs/shading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/shading.html -------------------------------------------------------------------------------- /docs/sourcedocs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/sourcedocs.html -------------------------------------------------------------------------------- /docs/sourcetree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/sourcetree.html -------------------------------------------------------------------------------- /docs/specs/enums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/specs/enums.txt -------------------------------------------------------------------------------- /docs/systems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/systems.html -------------------------------------------------------------------------------- /docs/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/thanks.html -------------------------------------------------------------------------------- /docs/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/utilities.html -------------------------------------------------------------------------------- /docs/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/versions.html -------------------------------------------------------------------------------- /docs/viewperf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/viewperf.html -------------------------------------------------------------------------------- /docs/vmware-guest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/vmware-guest.html -------------------------------------------------------------------------------- /docs/webmaster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/webmaster.html -------------------------------------------------------------------------------- /docs/xlibdriver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/docs/xlibdriver.html -------------------------------------------------------------------------------- /doxygen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/.gitignore -------------------------------------------------------------------------------- /doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/Makefile -------------------------------------------------------------------------------- /doxygen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/README -------------------------------------------------------------------------------- /doxygen/common.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/common.doxy -------------------------------------------------------------------------------- /doxygen/core_subset.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/core_subset.doxy -------------------------------------------------------------------------------- /doxygen/doxy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/doxy.bat -------------------------------------------------------------------------------- /doxygen/gallium.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/gallium.doc -------------------------------------------------------------------------------- /doxygen/gallium.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/gallium.doxy -------------------------------------------------------------------------------- /doxygen/gbm.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/gbm.doxy -------------------------------------------------------------------------------- /doxygen/glapi.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/glapi.doxy -------------------------------------------------------------------------------- /doxygen/glsl.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/glsl.doxy -------------------------------------------------------------------------------- /doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/header.html -------------------------------------------------------------------------------- /doxygen/header_subset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/header_subset.html -------------------------------------------------------------------------------- /doxygen/i965.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/i965.doxy -------------------------------------------------------------------------------- /doxygen/main.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/main.doxy -------------------------------------------------------------------------------- /doxygen/math.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/math.doxy -------------------------------------------------------------------------------- /doxygen/math_subset.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/math_subset.doxy -------------------------------------------------------------------------------- /doxygen/radeon_subset.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/radeon_subset.doxy -------------------------------------------------------------------------------- /doxygen/shader.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/shader.doxy -------------------------------------------------------------------------------- /doxygen/swrast.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/swrast.doxy -------------------------------------------------------------------------------- /doxygen/swrast_setup.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/swrast_setup.doxy -------------------------------------------------------------------------------- /doxygen/tnl.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/tnl.doxy -------------------------------------------------------------------------------- /doxygen/tnl_dd.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/tnl_dd.doxy -------------------------------------------------------------------------------- /doxygen/vbo.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/doxygen/vbo.doxy -------------------------------------------------------------------------------- /include/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/CL/cl.h -------------------------------------------------------------------------------- /include/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/CL/cl.hpp -------------------------------------------------------------------------------- /include/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/CL/cl_ext.h -------------------------------------------------------------------------------- /include/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/CL/cl_gl.h -------------------------------------------------------------------------------- /include/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /include/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/CL/cl_platform.h -------------------------------------------------------------------------------- /include/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/CL/opencl.h -------------------------------------------------------------------------------- /include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/EGL/egl.h -------------------------------------------------------------------------------- /include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/EGL/eglext.h -------------------------------------------------------------------------------- /include/EGL/eglmesaext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/EGL/eglmesaext.h -------------------------------------------------------------------------------- /include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /include/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/gl.h -------------------------------------------------------------------------------- /include/GL/gl_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/gl_mangle.h -------------------------------------------------------------------------------- /include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/glext.h -------------------------------------------------------------------------------- /include/GL/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/glx.h -------------------------------------------------------------------------------- /include/GL/glx_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/glx_mangle.h -------------------------------------------------------------------------------- /include/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/glxext.h -------------------------------------------------------------------------------- /include/GL/internal/sarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/internal/sarea.h -------------------------------------------------------------------------------- /include/GL/osmesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/osmesa.h -------------------------------------------------------------------------------- /include/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/wglext.h -------------------------------------------------------------------------------- /include/GL/wmesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GL/wmesa.h -------------------------------------------------------------------------------- /include/GLES/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES/egl.h -------------------------------------------------------------------------------- /include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES/gl.h -------------------------------------------------------------------------------- /include/GLES/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES/glext.h -------------------------------------------------------------------------------- /include/GLES/glplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES/glplatform.h -------------------------------------------------------------------------------- /include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES2/gl2.h -------------------------------------------------------------------------------- /include/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES2/gl2ext.h -------------------------------------------------------------------------------- /include/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES2/gl2platform.h -------------------------------------------------------------------------------- /include/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES3/gl3.h -------------------------------------------------------------------------------- /include/GLES3/gl3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES3/gl3ext.h -------------------------------------------------------------------------------- /include/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/GLES3/gl3platform.h -------------------------------------------------------------------------------- /include/HaikuGL/GLRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/HaikuGL/GLRenderer.h -------------------------------------------------------------------------------- /include/HaikuGL/GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/HaikuGL/GLView.h -------------------------------------------------------------------------------- /include/HaikuGL/OpenGLKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/HaikuGL/OpenGLKit.h -------------------------------------------------------------------------------- /include/HaikuGL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/HaikuGL/README -------------------------------------------------------------------------------- /include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /include/VG/openvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/VG/openvg.h -------------------------------------------------------------------------------- /include/VG/vgext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/VG/vgext.h -------------------------------------------------------------------------------- /include/VG/vgplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/VG/vgplatform.h -------------------------------------------------------------------------------- /include/VG/vgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/VG/vgu.h -------------------------------------------------------------------------------- /include/c11/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/c11/threads.h -------------------------------------------------------------------------------- /include/c11/threads_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/c11/threads_posix.h -------------------------------------------------------------------------------- /include/c11/threads_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/c11/threads_win32.h -------------------------------------------------------------------------------- /include/c99/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/c99/inttypes.h -------------------------------------------------------------------------------- /include/c99/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/c99/stdbool.h -------------------------------------------------------------------------------- /include/c99/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/c99/stdint.h -------------------------------------------------------------------------------- /include/c99_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/include/c99_compat.h -------------------------------------------------------------------------------- /install-lib-links.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/install-lib-links.mk -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_prog_bison.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/m4/ax_prog_bison.m4 -------------------------------------------------------------------------------- /m4/ax_prog_flex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/m4/ax_prog_flex.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ax_python_module.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/m4/ax_python_module.m4 -------------------------------------------------------------------------------- /scons/crossmingw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/crossmingw.py -------------------------------------------------------------------------------- /scons/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/custom.py -------------------------------------------------------------------------------- /scons/dxsdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/dxsdk.py -------------------------------------------------------------------------------- /scons/fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/fixes.py -------------------------------------------------------------------------------- /scons/gallium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/gallium.py -------------------------------------------------------------------------------- /scons/llvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/llvm.py -------------------------------------------------------------------------------- /scons/source_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/source_list.py -------------------------------------------------------------------------------- /scons/x11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/scons/x11.py -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/SConscript -------------------------------------------------------------------------------- /src/egl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/Makefile.am -------------------------------------------------------------------------------- /src/egl/drivers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/drivers/Makefile.am -------------------------------------------------------------------------------- /src/egl/main/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/Android.mk -------------------------------------------------------------------------------- /src/egl/main/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/Makefile.am -------------------------------------------------------------------------------- /src/egl/main/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/README.txt -------------------------------------------------------------------------------- /src/egl/main/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/SConscript -------------------------------------------------------------------------------- /src/egl/main/egl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egl.def -------------------------------------------------------------------------------- /src/egl/main/egl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egl.pc.in -------------------------------------------------------------------------------- /src/egl/main/eglapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglapi.c -------------------------------------------------------------------------------- /src/egl/main/eglapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglapi.h -------------------------------------------------------------------------------- /src/egl/main/eglarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglarray.c -------------------------------------------------------------------------------- /src/egl/main/eglarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglarray.h -------------------------------------------------------------------------------- /src/egl/main/eglcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglcompiler.h -------------------------------------------------------------------------------- /src/egl/main/eglconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglconfig.c -------------------------------------------------------------------------------- /src/egl/main/eglconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglconfig.h -------------------------------------------------------------------------------- /src/egl/main/eglcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglcontext.c -------------------------------------------------------------------------------- /src/egl/main/eglcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglcontext.h -------------------------------------------------------------------------------- /src/egl/main/eglcurrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglcurrent.c -------------------------------------------------------------------------------- /src/egl/main/eglcurrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglcurrent.h -------------------------------------------------------------------------------- /src/egl/main/egldefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egldefines.h -------------------------------------------------------------------------------- /src/egl/main/egldisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egldisplay.c -------------------------------------------------------------------------------- /src/egl/main/egldisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egldisplay.h -------------------------------------------------------------------------------- /src/egl/main/egldriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egldriver.c -------------------------------------------------------------------------------- /src/egl/main/egldriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egldriver.h -------------------------------------------------------------------------------- /src/egl/main/eglfallbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglfallbacks.c -------------------------------------------------------------------------------- /src/egl/main/eglglobals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglglobals.c -------------------------------------------------------------------------------- /src/egl/main/eglglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglglobals.h -------------------------------------------------------------------------------- /src/egl/main/eglimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglimage.c -------------------------------------------------------------------------------- /src/egl/main/eglimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglimage.h -------------------------------------------------------------------------------- /src/egl/main/egllog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egllog.c -------------------------------------------------------------------------------- /src/egl/main/egllog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egllog.h -------------------------------------------------------------------------------- /src/egl/main/eglmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglmisc.c -------------------------------------------------------------------------------- /src/egl/main/eglmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglmisc.h -------------------------------------------------------------------------------- /src/egl/main/eglmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglmode.c -------------------------------------------------------------------------------- /src/egl/main/eglmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglmode.h -------------------------------------------------------------------------------- /src/egl/main/eglmutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglmutex.h -------------------------------------------------------------------------------- /src/egl/main/eglscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglscreen.c -------------------------------------------------------------------------------- /src/egl/main/eglscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglscreen.h -------------------------------------------------------------------------------- /src/egl/main/eglstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglstring.c -------------------------------------------------------------------------------- /src/egl/main/eglstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglstring.h -------------------------------------------------------------------------------- /src/egl/main/eglsurface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglsurface.c -------------------------------------------------------------------------------- /src/egl/main/eglsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglsurface.h -------------------------------------------------------------------------------- /src/egl/main/eglsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglsync.c -------------------------------------------------------------------------------- /src/egl/main/eglsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/eglsync.h -------------------------------------------------------------------------------- /src/egl/main/egltypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/main/egltypedefs.h -------------------------------------------------------------------------------- /src/egl/wayland/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/wayland/.gitignore -------------------------------------------------------------------------------- /src/egl/wayland/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/egl/wayland/Makefile.am -------------------------------------------------------------------------------- /src/gallium/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gallium/Android.mk -------------------------------------------------------------------------------- /src/gallium/Automake.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gallium/Automake.inc -------------------------------------------------------------------------------- /src/gallium/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gallium/SConscript -------------------------------------------------------------------------------- /src/gallium/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gallium/docs/Makefile -------------------------------------------------------------------------------- /src/gallium/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gallium/docs/make.bat -------------------------------------------------------------------------------- /src/gallium/drivers/r300/.gitignore: -------------------------------------------------------------------------------- 1 | r300_compiler_tests 2 | -------------------------------------------------------------------------------- /src/gallium/drivers/r300/ralloc.c: -------------------------------------------------------------------------------- 1 | ../../../glsl/ralloc.c -------------------------------------------------------------------------------- /src/gallium/drivers/r300/register_allocate.c: -------------------------------------------------------------------------------- 1 | ../../../mesa/program/register_allocate.c -------------------------------------------------------------------------------- /src/gallium/drivers/radeon/LLVM_REVISION.txt: -------------------------------------------------------------------------------- 1 | @181269 2 | -------------------------------------------------------------------------------- /src/gallium/drivers/svga/include/includeCheck.h: -------------------------------------------------------------------------------- 1 | /* dummy file */ 2 | -------------------------------------------------------------------------------- /src/gallium/drivers/svga/include/vmware_pack_begin.h: -------------------------------------------------------------------------------- 1 | /* dummy file */ 2 | -------------------------------------------------------------------------------- /src/gallium/drivers/svga/include/vmware_pack_end.h: -------------------------------------------------------------------------------- 1 | /* dummy file */ 2 | -------------------------------------------------------------------------------- /src/gallium/state_trackers/dri/drm/dri_context.c: -------------------------------------------------------------------------------- 1 | ../common/dri_context.c -------------------------------------------------------------------------------- /src/gallium/state_trackers/dri/drm/dri_drawable.c: -------------------------------------------------------------------------------- 1 | ../common/dri_drawable.c -------------------------------------------------------------------------------- /src/gallium/state_trackers/dri/drm/dri_screen.c: -------------------------------------------------------------------------------- 1 | ../common/dri_screen.c -------------------------------------------------------------------------------- /src/gallium/state_trackers/dri/sw/dri_context.c: -------------------------------------------------------------------------------- 1 | ../common/dri_context.c -------------------------------------------------------------------------------- /src/gallium/state_trackers/dri/sw/dri_drawable.c: -------------------------------------------------------------------------------- 1 | ../common/dri_drawable.c -------------------------------------------------------------------------------- /src/gallium/state_trackers/dri/sw/dri_screen.c: -------------------------------------------------------------------------------- 1 | ../common/dri_screen.c -------------------------------------------------------------------------------- /src/gallium/state_trackers/egl/x11/dri2.c: -------------------------------------------------------------------------------- 1 | ../../../../glx/dri2.c -------------------------------------------------------------------------------- /src/gallium/state_trackers/gbm/Makefile.sources: -------------------------------------------------------------------------------- 1 | C_SOURCES := \ 2 | gbm_drm.c 3 | -------------------------------------------------------------------------------- /src/gallium/state_trackers/osmesa/Makefile.sources: -------------------------------------------------------------------------------- 1 | C_SOURCES := \ 2 | osmesa.c 3 | -------------------------------------------------------------------------------- /src/gallium/state_trackers/vega/.gitignore: -------------------------------------------------------------------------------- 1 | api_tmp.h 2 | -------------------------------------------------------------------------------- /src/gallium/targets/egl-static/egl.link: -------------------------------------------------------------------------------- 1 | VERSION { 2 | global: _eglMain; local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /src/gallium/targets/opencl/mesa.icd: -------------------------------------------------------------------------------- 1 | libMesaOpenCL.so 2 | -------------------------------------------------------------------------------- /src/gallium/targets/pipe-loader/pipe.link: -------------------------------------------------------------------------------- 1 | VERSION { 2 | global: driver_descriptor; local: *; 3 | }; 4 | -------------------------------------------------------------------------------- /src/gallium/targets/r300/dri/drm_target.c: -------------------------------------------------------------------------------- 1 | ../common/drm_target.c -------------------------------------------------------------------------------- /src/gallium/targets/r600/dri/drm_target.c: -------------------------------------------------------------------------------- 1 | ../common/drm_target.c -------------------------------------------------------------------------------- /src/gallium/targets/r600/vdpau/drm_target.c: -------------------------------------------------------------------------------- 1 | ../common/drm_target.c -------------------------------------------------------------------------------- /src/gallium/targets/r600/xvmc/drm_target.c: -------------------------------------------------------------------------------- 1 | ../common/drm_target.c -------------------------------------------------------------------------------- /src/gallium/targets/radeonsi/dri/drm_target.c: -------------------------------------------------------------------------------- 1 | ../common/drm_target.c -------------------------------------------------------------------------------- /src/gallium/targets/radeonsi/vdpau/drm_target.c: -------------------------------------------------------------------------------- 1 | ../common/drm_target.c -------------------------------------------------------------------------------- /src/gallium/tests/graw/tri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gallium/tests/graw/tri.c -------------------------------------------------------------------------------- /src/gallium/tests/trivial/.gitignore: -------------------------------------------------------------------------------- 1 | compute 2 | tri 3 | quad-tex 4 | result.bmp 5 | -------------------------------------------------------------------------------- /src/gallium/winsys/freedreno/drm/Makefile.sources: -------------------------------------------------------------------------------- 1 | C_SOURCES := \ 2 | freedreno_drm_winsys.c 3 | -------------------------------------------------------------------------------- /src/gallium/winsys/intel/drm/Makefile.sources: -------------------------------------------------------------------------------- 1 | C_SOURCES := \ 2 | intel_drm_winsys.c 3 | -------------------------------------------------------------------------------- /src/gallium/winsys/nouveau/drm/Makefile.sources: -------------------------------------------------------------------------------- 1 | C_SOURCES := \ 2 | nouveau_drm_winsys.c 3 | -------------------------------------------------------------------------------- /src/gbm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/Makefile.am -------------------------------------------------------------------------------- /src/gbm/main/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/main/backend.c -------------------------------------------------------------------------------- /src/gbm/main/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/main/backend.h -------------------------------------------------------------------------------- /src/gbm/main/common_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/main/common_drm.h -------------------------------------------------------------------------------- /src/gbm/main/gbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/main/gbm.c -------------------------------------------------------------------------------- /src/gbm/main/gbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/main/gbm.h -------------------------------------------------------------------------------- /src/gbm/main/gbm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/main/gbm.pc.in -------------------------------------------------------------------------------- /src/gbm/main/gbmint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gbm/main/gbmint.h -------------------------------------------------------------------------------- /src/getopt/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/getopt/SConscript -------------------------------------------------------------------------------- /src/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/getopt/getopt.h -------------------------------------------------------------------------------- /src/getopt/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/getopt/getopt_long.c -------------------------------------------------------------------------------- /src/glsl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/.gitignore -------------------------------------------------------------------------------- /src/glsl/Android.gen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/Android.gen.mk -------------------------------------------------------------------------------- /src/glsl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/Android.mk -------------------------------------------------------------------------------- /src/glsl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/Makefile.am -------------------------------------------------------------------------------- /src/glsl/Makefile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/Makefile.sources -------------------------------------------------------------------------------- /src/glsl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/README -------------------------------------------------------------------------------- /src/glsl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/SConscript -------------------------------------------------------------------------------- /src/glsl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/TODO -------------------------------------------------------------------------------- /src/glsl/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ast.h -------------------------------------------------------------------------------- /src/glsl/ast_array_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ast_array_index.cpp -------------------------------------------------------------------------------- /src/glsl/ast_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ast_expr.cpp -------------------------------------------------------------------------------- /src/glsl/ast_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ast_function.cpp -------------------------------------------------------------------------------- /src/glsl/ast_to_hir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ast_to_hir.cpp -------------------------------------------------------------------------------- /src/glsl/ast_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ast_type.cpp -------------------------------------------------------------------------------- /src/glsl/builtin_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/builtin_types.cpp -------------------------------------------------------------------------------- /src/glsl/glcpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glcpp/.gitignore -------------------------------------------------------------------------------- /src/glsl/glcpp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glcpp/README -------------------------------------------------------------------------------- /src/glsl/glcpp/glcpp-lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glcpp/glcpp-lex.l -------------------------------------------------------------------------------- /src/glsl/glcpp/glcpp-parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glcpp/glcpp-parse.y -------------------------------------------------------------------------------- /src/glsl/glcpp/glcpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glcpp/glcpp.c -------------------------------------------------------------------------------- /src/glsl/glcpp/glcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glcpp/glcpp.h -------------------------------------------------------------------------------- /src/glsl/glcpp/pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glcpp/pp.c -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/000-content-with-spaces.c: -------------------------------------------------------------------------------- 1 | this is four tokens 2 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/000-content-with-spaces.c.expected: -------------------------------------------------------------------------------- 1 | this is four tokens 2 | 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/001-define.c: -------------------------------------------------------------------------------- 1 | #define foo 1 2 | foo 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/001-define.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/002-define-chain.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/003-define-chain-reverse.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/004-define-recursive.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | foo 5 | bar 6 | baz 7 | 8 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/005-define-composite-chain.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | a 1 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/006-define-composite-chain-reverse.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | a 1 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/008-define-empty.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/009-undef.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | foo 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/010-undef-re-define.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | foo 5 | 6 | 2 7 | 8 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/011-define-func-empty.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/012-define-func-no-args.c.expected: -------------------------------------------------------------------------------- 1 | 2 | bar 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/013-define-func-1-arg-unused.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/014-define-func-2-arg-unused.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/016-define-func-1-arg.c.expected: -------------------------------------------------------------------------------- 1 | 2 | ((bar)+1) 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/017-define-func-2-args.c: -------------------------------------------------------------------------------- 1 | #define foo(x,y) ((x)*(y)) 2 | foo(bar,baz) 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/017-define-func-2-args.c.expected: -------------------------------------------------------------------------------- 1 | 2 | ((bar)*(baz)) 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/018-define-func-macro-as-parameter.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/019-define-func-1-arg-multi.c.expected: -------------------------------------------------------------------------------- 1 | 2 | (this is more than one word) 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/021-define-func-compose.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | (2*((1+(3)))) 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/022-define-func-arg-with-parens.c.expected: -------------------------------------------------------------------------------- 1 | 2 | (argument(including parens)for the win) 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/024-define-chain-to-self-recursion.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | foo 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/025-func-macro-as-non-macro.c.expected: -------------------------------------------------------------------------------- 1 | 2 | foo bar 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/026-define-func-extra-newlines.c: -------------------------------------------------------------------------------- 1 | #define foo(a) bar 2 | 3 | foo 4 | ( 5 | 1 6 | ) 7 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/026-define-func-extra-newlines.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | bar 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/027-define-chain-obj-to-func.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | success 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | success 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | success 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | success 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | success 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/032-define-func-self-recurse.c.expected: -------------------------------------------------------------------------------- 1 | 2 | foo(2*(3)) 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/034-define-func-self-compose-non-func.c.expected: -------------------------------------------------------------------------------- 1 | 2 | foo 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 1+foo 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | more success 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/037-finalize-unexpanded-macro.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | expand(just once) 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/038-func-arg-with-commas.c.expected: -------------------------------------------------------------------------------- 1 | 2 | success 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | (two,words) 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/040-token-pasting.c.expected: -------------------------------------------------------------------------------- 1 | 2 | onetoken 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/049-if-expression-precedence.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | success 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | success 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/056-macro-argument-with-comma.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | success 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/058-token-pasting-empty-arguments.c.expected: -------------------------------------------------------------------------------- 1 | 2 | ab 3 | a 4 | b 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/059-token-pasting-integer.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 12 3 | 1000 4 | identifier2 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5*2 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | success 6 | 7 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/064-version.c: -------------------------------------------------------------------------------- 1 | #version 130 2 | #define FOO 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/064-version.c.expected: -------------------------------------------------------------------------------- 1 | #version 130 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/066-if-nospace-expression.c: -------------------------------------------------------------------------------- 1 | #if(1) 2 | success 3 | #endif 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/066-if-nospace-expression.c.expected: -------------------------------------------------------------------------------- 1 | 2 | success 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/069-repeated-argument.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 1 1 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/070-undefined-macro-in-expression.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Success 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/071-punctuator.c: -------------------------------------------------------------------------------- 1 | a = b 2 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/071-punctuator.c.expected: -------------------------------------------------------------------------------- 1 | a = b 2 | 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/073-if-in-ifdef.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/074-elif-undef.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/075-elif-elif-undef.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/077-else-without-if.c: -------------------------------------------------------------------------------- 1 | #else 2 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/077-else-without-if.c.expected: -------------------------------------------------------------------------------- 1 | 0:1(2): preprocessor error: else without #if 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/078-elif-without-if.c: -------------------------------------------------------------------------------- 1 | #elif defined FOO 2 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/078-elif-without-if.c.expected: -------------------------------------------------------------------------------- 1 | 0:1(2): preprocessor error: elif without #if 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/079-endif-without-if.c: -------------------------------------------------------------------------------- 1 | #endif 2 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/079-endif-without-if.c.expected: -------------------------------------------------------------------------------- 1 | 0:1(2): preprocessor error: #endif without #if 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/083-unterminated-if.c: -------------------------------------------------------------------------------- 1 | #if 1 2 | 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/087-if-comments.c: -------------------------------------------------------------------------------- 1 | #if (1 == 0) // dangerous comment 2 | fail 3 | #else 4 | win 5 | #endif 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/087-if-comments.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | win 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/093-divide-by-zero.c: -------------------------------------------------------------------------------- 1 | #if (1 / 0) 2 | #endif 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/095-recursive-define.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | B(0, C) 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/096-paste-twice.c.expected: -------------------------------------------------------------------------------- 1 | 2 | justonetoken 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/097-paste-with-non-function-macro.c.expected: -------------------------------------------------------------------------------- 1 | 2 | onetoken 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/102-garbage-after-endif.c: -------------------------------------------------------------------------------- 1 | #if 0 2 | #endif garbage 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/103-garbage-after-else.c: -------------------------------------------------------------------------------- 1 | #if 0 2 | #else garbage 3 | #endif 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/104-hash-line-followed-by-code.c: -------------------------------------------------------------------------------- 1 | #line 2 2 | int foo(); 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/104-hash-line-followed-by-code.c.expected: -------------------------------------------------------------------------------- 1 | #line 2 2 | int foo(); 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/106-multiline-hash-if.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | int foo(); 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/108-no-space-after-hash-version.c: -------------------------------------------------------------------------------- 1 | #version110 2 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/109-no-space-after-hash-line.c: -------------------------------------------------------------------------------- 1 | #line2 2 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c: -------------------------------------------------------------------------------- 1 | #if 1 2 | #elif110 3 | #endif 4 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/118-comment-becomes-space.c: -------------------------------------------------------------------------------- 1 | #define FOO first/* 2 | */second 3 | 4 | FOO 5 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/118-comment-becomes-space.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | first second 5 | 6 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/121-comment-bug-72686.c: -------------------------------------------------------------------------------- 1 | /* 2 | */ // 3 | -------------------------------------------------------------------------------- /src/glsl/glcpp/tests/121-comment-bug-72686.c.expected: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/glsl/glsl_lexer.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glsl_lexer.ll -------------------------------------------------------------------------------- /src/glsl/glsl_parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glsl_parser.yy -------------------------------------------------------------------------------- /src/glsl/glsl_symbol_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glsl_symbol_table.h -------------------------------------------------------------------------------- /src/glsl/glsl_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glsl_types.cpp -------------------------------------------------------------------------------- /src/glsl/glsl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/glsl_types.h -------------------------------------------------------------------------------- /src/glsl/ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir.cpp -------------------------------------------------------------------------------- /src/glsl/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir.h -------------------------------------------------------------------------------- /src/glsl/ir_basic_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_basic_block.cpp -------------------------------------------------------------------------------- /src/glsl/ir_basic_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_basic_block.h -------------------------------------------------------------------------------- /src/glsl/ir_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_builder.cpp -------------------------------------------------------------------------------- /src/glsl/ir_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_builder.h -------------------------------------------------------------------------------- /src/glsl/ir_clone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_clone.cpp -------------------------------------------------------------------------------- /src/glsl/ir_equals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_equals.cpp -------------------------------------------------------------------------------- /src/glsl/ir_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_function.cpp -------------------------------------------------------------------------------- /src/glsl/ir_hv_accept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_hv_accept.cpp -------------------------------------------------------------------------------- /src/glsl/ir_optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_optimization.h -------------------------------------------------------------------------------- /src/glsl/ir_print_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_print_visitor.h -------------------------------------------------------------------------------- /src/glsl/ir_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_reader.cpp -------------------------------------------------------------------------------- /src/glsl/ir_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_reader.h -------------------------------------------------------------------------------- /src/glsl/ir_rvalue_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_rvalue_visitor.h -------------------------------------------------------------------------------- /src/glsl/ir_uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_uniform.h -------------------------------------------------------------------------------- /src/glsl/ir_validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_validate.cpp -------------------------------------------------------------------------------- /src/glsl/ir_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ir_visitor.h -------------------------------------------------------------------------------- /src/glsl/link_atomics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/link_atomics.cpp -------------------------------------------------------------------------------- /src/glsl/link_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/link_functions.cpp -------------------------------------------------------------------------------- /src/glsl/link_uniforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/link_uniforms.cpp -------------------------------------------------------------------------------- /src/glsl/link_varyings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/link_varyings.cpp -------------------------------------------------------------------------------- /src/glsl/link_varyings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/link_varyings.h -------------------------------------------------------------------------------- /src/glsl/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/linker.cpp -------------------------------------------------------------------------------- /src/glsl/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/linker.h -------------------------------------------------------------------------------- /src/glsl/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/list.h -------------------------------------------------------------------------------- /src/glsl/loop_analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/loop_analysis.cpp -------------------------------------------------------------------------------- /src/glsl/loop_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/loop_analysis.h -------------------------------------------------------------------------------- /src/glsl/loop_controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/loop_controls.cpp -------------------------------------------------------------------------------- /src/glsl/loop_unroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/loop_unroll.cpp -------------------------------------------------------------------------------- /src/glsl/lower_discard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/lower_discard.cpp -------------------------------------------------------------------------------- /src/glsl/lower_jumps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/lower_jumps.cpp -------------------------------------------------------------------------------- /src/glsl/lower_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/lower_noise.cpp -------------------------------------------------------------------------------- /src/glsl/lower_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/lower_vector.cpp -------------------------------------------------------------------------------- /src/glsl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/main.cpp -------------------------------------------------------------------------------- /src/glsl/opt_algebraic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/opt_algebraic.cpp -------------------------------------------------------------------------------- /src/glsl/opt_cse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/opt_cse.cpp -------------------------------------------------------------------------------- /src/glsl/opt_dead_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/opt_dead_code.cpp -------------------------------------------------------------------------------- /src/glsl/opt_vectorize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/opt_vectorize.cpp -------------------------------------------------------------------------------- /src/glsl/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/program.h -------------------------------------------------------------------------------- /src/glsl/ralloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ralloc.c -------------------------------------------------------------------------------- /src/glsl/ralloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/ralloc.h -------------------------------------------------------------------------------- /src/glsl/s_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/s_expression.cpp -------------------------------------------------------------------------------- /src/glsl/s_expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/s_expression.h -------------------------------------------------------------------------------- /src/glsl/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/strtod.c -------------------------------------------------------------------------------- /src/glsl/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/strtod.h -------------------------------------------------------------------------------- /src/glsl/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/test.cpp -------------------------------------------------------------------------------- /src/glsl/test_optpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/test_optpass.cpp -------------------------------------------------------------------------------- /src/glsl/test_optpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/test_optpass.h -------------------------------------------------------------------------------- /src/glsl/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/tests/.gitignore -------------------------------------------------------------------------------- /src/glsl/tests/compare_ir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/tests/compare_ir -------------------------------------------------------------------------------- /src/glsl/tests/lower_jumps/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | -------------------------------------------------------------------------------- /src/glsl/tests/sexps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/tests/sexps.py -------------------------------------------------------------------------------- /src/glsl/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/threadpool.c -------------------------------------------------------------------------------- /src/glsl/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glsl/threadpool.h -------------------------------------------------------------------------------- /src/glx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/.gitignore -------------------------------------------------------------------------------- /src/glx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/Makefile.am -------------------------------------------------------------------------------- /src/glx/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/SConscript -------------------------------------------------------------------------------- /src/glx/XF86dri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/XF86dri.c -------------------------------------------------------------------------------- /src/glx/apple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/Makefile -------------------------------------------------------------------------------- /src/glx/apple/RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/RELEASE_NOTES -------------------------------------------------------------------------------- /src/glx/apple/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/TODO -------------------------------------------------------------------------------- /src/glx/apple/apple_cgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/apple_cgl.c -------------------------------------------------------------------------------- /src/glx/apple/apple_cgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/apple_cgl.h -------------------------------------------------------------------------------- /src/glx/apple/apple_glapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/apple_glapi.c -------------------------------------------------------------------------------- /src/glx/apple/apple_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/apple_glx.c -------------------------------------------------------------------------------- /src/glx/apple/apple_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/apple_glx.h -------------------------------------------------------------------------------- /src/glx/apple/apple_visual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/apple_visual.c -------------------------------------------------------------------------------- /src/glx/apple/apple_visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/apple_visual.h -------------------------------------------------------------------------------- /src/glx/apple/appledri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/appledri.c -------------------------------------------------------------------------------- /src/glx/apple/appledri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/appledri.h -------------------------------------------------------------------------------- /src/glx/apple/appledristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/appledristr.h -------------------------------------------------------------------------------- /src/glx/apple/glx_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/glx_empty.c -------------------------------------------------------------------------------- /src/glx/apple/glxreply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/apple/glxreply.c -------------------------------------------------------------------------------- /src/glx/applegl_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/applegl_glx.c -------------------------------------------------------------------------------- /src/glx/clientattrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/clientattrib.c -------------------------------------------------------------------------------- /src/glx/clientinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/clientinfo.c -------------------------------------------------------------------------------- /src/glx/compsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/compsize.c -------------------------------------------------------------------------------- /src/glx/create_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/create_context.c -------------------------------------------------------------------------------- /src/glx/dri2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri2.c -------------------------------------------------------------------------------- /src/glx/dri2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri2.h -------------------------------------------------------------------------------- /src/glx/dri2_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri2_glx.c -------------------------------------------------------------------------------- /src/glx/dri2_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri2_priv.h -------------------------------------------------------------------------------- /src/glx/dri3_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri3_glx.c -------------------------------------------------------------------------------- /src/glx/dri3_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri3_priv.h -------------------------------------------------------------------------------- /src/glx/dri_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri_common.c -------------------------------------------------------------------------------- /src/glx/dri_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri_common.h -------------------------------------------------------------------------------- /src/glx/dri_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/dri_glx.c -------------------------------------------------------------------------------- /src/glx/drisw_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/drisw_glx.c -------------------------------------------------------------------------------- /src/glx/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/eval.c -------------------------------------------------------------------------------- /src/glx/glx_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glx_error.c -------------------------------------------------------------------------------- /src/glx/glx_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glx_error.h -------------------------------------------------------------------------------- /src/glx/glx_pbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glx_pbuffer.c -------------------------------------------------------------------------------- /src/glx/glx_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glx_query.c -------------------------------------------------------------------------------- /src/glx/glxclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxclient.h -------------------------------------------------------------------------------- /src/glx/glxcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxcmds.c -------------------------------------------------------------------------------- /src/glx/glxconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxconfig.c -------------------------------------------------------------------------------- /src/glx/glxconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxconfig.h -------------------------------------------------------------------------------- /src/glx/glxcurrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxcurrent.c -------------------------------------------------------------------------------- /src/glx/glxext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxext.c -------------------------------------------------------------------------------- /src/glx/glxextensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxextensions.c -------------------------------------------------------------------------------- /src/glx/glxextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxextensions.h -------------------------------------------------------------------------------- /src/glx/glxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxhash.c -------------------------------------------------------------------------------- /src/glx/glxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/glxhash.h -------------------------------------------------------------------------------- /src/glx/indirect_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/indirect_glx.c -------------------------------------------------------------------------------- /src/glx/indirect_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/indirect_init.h -------------------------------------------------------------------------------- /src/glx/packrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/packrender.h -------------------------------------------------------------------------------- /src/glx/packsingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/packsingle.h -------------------------------------------------------------------------------- /src/glx/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/pixel.c -------------------------------------------------------------------------------- /src/glx/pixelstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/pixelstore.c -------------------------------------------------------------------------------- /src/glx/query_renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/query_renderer.c -------------------------------------------------------------------------------- /src/glx/render2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/render2.c -------------------------------------------------------------------------------- /src/glx/renderpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/renderpix.c -------------------------------------------------------------------------------- /src/glx/single2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/single2.c -------------------------------------------------------------------------------- /src/glx/singlepix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/singlepix.c -------------------------------------------------------------------------------- /src/glx/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /glx-test 2 | -------------------------------------------------------------------------------- /src/glx/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/tests/Makefile.am -------------------------------------------------------------------------------- /src/glx/tests/enum_sizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/tests/enum_sizes.cpp -------------------------------------------------------------------------------- /src/glx/vertarr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/vertarr.c -------------------------------------------------------------------------------- /src/glx/xf86dri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/xf86dri.h -------------------------------------------------------------------------------- /src/glx/xf86dristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/xf86dristr.h -------------------------------------------------------------------------------- /src/glx/xfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/glx/xfont.c -------------------------------------------------------------------------------- /src/gtest/.gitignore: -------------------------------------------------------------------------------- 1 | libgtest.la 2 | -------------------------------------------------------------------------------- /src/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gtest/Makefile.am -------------------------------------------------------------------------------- /src/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /src/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /src/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gtest/src/gtest.cc -------------------------------------------------------------------------------- /src/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /src/hgl/GLDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/hgl/GLDispatcher.cpp -------------------------------------------------------------------------------- /src/hgl/GLDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/hgl/GLDispatcher.h -------------------------------------------------------------------------------- /src/hgl/GLRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/hgl/GLRenderer.cpp -------------------------------------------------------------------------------- /src/hgl/GLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/hgl/GLView.cpp -------------------------------------------------------------------------------- /src/hgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/hgl/SConscript -------------------------------------------------------------------------------- /src/loader/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/loader/Android.mk -------------------------------------------------------------------------------- /src/loader/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/loader/Makefile.am -------------------------------------------------------------------------------- /src/loader/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/loader/SConscript -------------------------------------------------------------------------------- /src/loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/loader/loader.c -------------------------------------------------------------------------------- /src/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/loader/loader.h -------------------------------------------------------------------------------- /src/mapi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/Android.mk -------------------------------------------------------------------------------- /src/mapi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/Makefile.am -------------------------------------------------------------------------------- /src/mapi/Makefile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/Makefile.sources -------------------------------------------------------------------------------- /src/mapi/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/entry.c -------------------------------------------------------------------------------- /src/mapi/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/entry.h -------------------------------------------------------------------------------- /src/mapi/entry_x86_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/entry_x86_tls.h -------------------------------------------------------------------------------- /src/mapi/entry_x86_tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/entry_x86_tsd.h -------------------------------------------------------------------------------- /src/mapi/es1api/ABI-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/es1api/ABI-check -------------------------------------------------------------------------------- /src/mapi/es2api/ABI-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/es2api/ABI-check -------------------------------------------------------------------------------- /src/mapi/glapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/glapi/.gitignore -------------------------------------------------------------------------------- /src/mapi/glapi/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/glapi/SConscript -------------------------------------------------------------------------------- /src/mapi/glapi/glapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/glapi/glapi.c -------------------------------------------------------------------------------- /src/mapi/glapi/glapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/glapi/glapi.h -------------------------------------------------------------------------------- /src/mapi/glapi/glthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/glapi/glthread.c -------------------------------------------------------------------------------- /src/mapi/glapi/glthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/glapi/glthread.h -------------------------------------------------------------------------------- /src/mapi/glapi/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /glapi-test 2 | -------------------------------------------------------------------------------- /src/mapi/mapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/mapi.c -------------------------------------------------------------------------------- /src/mapi/mapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/mapi.h -------------------------------------------------------------------------------- /src/mapi/mapi_abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/mapi_abi.py -------------------------------------------------------------------------------- /src/mapi/mapi_glapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/mapi_glapi.c -------------------------------------------------------------------------------- /src/mapi/mapi_tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/mapi_tmp.h -------------------------------------------------------------------------------- /src/mapi/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/stub.c -------------------------------------------------------------------------------- /src/mapi/stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/stub.h -------------------------------------------------------------------------------- /src/mapi/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/table.c -------------------------------------------------------------------------------- /src/mapi/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/table.h -------------------------------------------------------------------------------- /src/mapi/u_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/u_compiler.h -------------------------------------------------------------------------------- /src/mapi/u_current.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/u_current.c -------------------------------------------------------------------------------- /src/mapi/u_current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/u_current.h -------------------------------------------------------------------------------- /src/mapi/u_execmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/u_execmem.c -------------------------------------------------------------------------------- /src/mapi/u_execmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/u_execmem.h -------------------------------------------------------------------------------- /src/mapi/u_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/u_macros.h -------------------------------------------------------------------------------- /src/mapi/u_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/u_thread.h -------------------------------------------------------------------------------- /src/mapi/vgapi/.gitignore: -------------------------------------------------------------------------------- 1 | vgapi_tmp.h 2 | -------------------------------------------------------------------------------- /src/mapi/vgapi/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/vgapi/SConscript -------------------------------------------------------------------------------- /src/mapi/vgapi/vg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/vgapi/vg.pc.in -------------------------------------------------------------------------------- /src/mapi/vgapi/vgapi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mapi/vgapi/vgapi.csv -------------------------------------------------------------------------------- /src/mesa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/.gitignore -------------------------------------------------------------------------------- /src/mesa/Android.gen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/Android.gen.mk -------------------------------------------------------------------------------- /src/mesa/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/Android.mk -------------------------------------------------------------------------------- /src/mesa/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/Makefile.am -------------------------------------------------------------------------------- /src/mesa/Makefile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/Makefile.sources -------------------------------------------------------------------------------- /src/mesa/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/SConscript -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_buffer_objects.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_buffer_objects.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_buffer_objects.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_buffer_objects.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_chipset.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_chipset.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_cmdbuf.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_cmdbuf.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_common.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_common.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_common.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_common.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_common_context.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_common_context.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_common_context.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_common_context.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_debug.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_debug.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_debug.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_debug.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_dma.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_dma.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_dma.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_dma.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_fbo.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_fbo.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_fog.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_fog.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_fog.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_fog.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_mipmap_tree.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_mipmap_tree.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_mipmap_tree.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_mipmap_tree.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_pixel_read.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_pixel_read.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_queryobj.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_queryobj.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_queryobj.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_queryobj.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_screen.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_screen.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_screen.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_screen.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_span.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_span.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_span.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_span.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_tex_copy.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_tex_copy.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_texture.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_texture.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_texture.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_texture.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_tile.c: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_tile.c -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/radeon_tile.h: -------------------------------------------------------------------------------- 1 | ../radeon/radeon_tile.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/server/radeon_dri.h: -------------------------------------------------------------------------------- 1 | ../../radeon/server/radeon_dri.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/server/radeon_macros.h: -------------------------------------------------------------------------------- 1 | ../../radeon/server/radeon_macros.h -------------------------------------------------------------------------------- /src/mesa/drivers/dri/r200/server/radeon_reg.h: -------------------------------------------------------------------------------- 1 | ../../radeon/server/radeon_reg.h -------------------------------------------------------------------------------- /src/mesa/gl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/gl.pc.in -------------------------------------------------------------------------------- /src/mesa/main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/.gitignore -------------------------------------------------------------------------------- /src/mesa/main/accum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/accum.c -------------------------------------------------------------------------------- /src/mesa/main/accum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/accum.h -------------------------------------------------------------------------------- /src/mesa/main/api_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/api_exec.h -------------------------------------------------------------------------------- /src/mesa/main/arrayobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/arrayobj.c -------------------------------------------------------------------------------- /src/mesa/main/arrayobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/arrayobj.h -------------------------------------------------------------------------------- /src/mesa/main/attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/attrib.c -------------------------------------------------------------------------------- /src/mesa/main/attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/attrib.h -------------------------------------------------------------------------------- /src/mesa/main/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/bitset.h -------------------------------------------------------------------------------- /src/mesa/main/blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/blend.c -------------------------------------------------------------------------------- /src/mesa/main/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/blend.h -------------------------------------------------------------------------------- /src/mesa/main/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/blit.c -------------------------------------------------------------------------------- /src/mesa/main/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/blit.h -------------------------------------------------------------------------------- /src/mesa/main/bufferobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/bufferobj.c -------------------------------------------------------------------------------- /src/mesa/main/bufferobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/bufferobj.h -------------------------------------------------------------------------------- /src/mesa/main/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/buffers.c -------------------------------------------------------------------------------- /src/mesa/main/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/buffers.h -------------------------------------------------------------------------------- /src/mesa/main/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/clear.c -------------------------------------------------------------------------------- /src/mesa/main/clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/clear.h -------------------------------------------------------------------------------- /src/mesa/main/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/clip.c -------------------------------------------------------------------------------- /src/mesa/main/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/clip.h -------------------------------------------------------------------------------- /src/mesa/main/colormac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/colormac.h -------------------------------------------------------------------------------- /src/mesa/main/colortab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/colortab.c -------------------------------------------------------------------------------- /src/mesa/main/colortab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/colortab.h -------------------------------------------------------------------------------- /src/mesa/main/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/compiler.h -------------------------------------------------------------------------------- /src/mesa/main/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/config.h -------------------------------------------------------------------------------- /src/mesa/main/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/context.c -------------------------------------------------------------------------------- /src/mesa/main/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/context.h -------------------------------------------------------------------------------- /src/mesa/main/convolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/convolve.c -------------------------------------------------------------------------------- /src/mesa/main/convolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/convolve.h -------------------------------------------------------------------------------- /src/mesa/main/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/core.h -------------------------------------------------------------------------------- /src/mesa/main/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/cpuinfo.c -------------------------------------------------------------------------------- /src/mesa/main/cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/cpuinfo.h -------------------------------------------------------------------------------- /src/mesa/main/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/dd.h -------------------------------------------------------------------------------- /src/mesa/main/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/debug.c -------------------------------------------------------------------------------- /src/mesa/main/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/debug.h -------------------------------------------------------------------------------- /src/mesa/main/depth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/depth.c -------------------------------------------------------------------------------- /src/mesa/main/depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/depth.h -------------------------------------------------------------------------------- /src/mesa/main/dlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/dlist.c -------------------------------------------------------------------------------- /src/mesa/main/dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/dlist.h -------------------------------------------------------------------------------- /src/mesa/main/dlopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/dlopen.h -------------------------------------------------------------------------------- /src/mesa/main/drawpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/drawpix.c -------------------------------------------------------------------------------- /src/mesa/main/drawpix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/drawpix.h -------------------------------------------------------------------------------- /src/mesa/main/drawtex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/drawtex.c -------------------------------------------------------------------------------- /src/mesa/main/drawtex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/drawtex.h -------------------------------------------------------------------------------- /src/mesa/main/enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/enable.c -------------------------------------------------------------------------------- /src/mesa/main/enable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/enable.h -------------------------------------------------------------------------------- /src/mesa/main/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/enums.h -------------------------------------------------------------------------------- /src/mesa/main/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/errors.c -------------------------------------------------------------------------------- /src/mesa/main/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/errors.h -------------------------------------------------------------------------------- /src/mesa/main/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/eval.c -------------------------------------------------------------------------------- /src/mesa/main/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/eval.h -------------------------------------------------------------------------------- /src/mesa/main/execmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/execmem.c -------------------------------------------------------------------------------- /src/mesa/main/fbobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/fbobject.c -------------------------------------------------------------------------------- /src/mesa/main/fbobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/fbobject.h -------------------------------------------------------------------------------- /src/mesa/main/feedback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/feedback.c -------------------------------------------------------------------------------- /src/mesa/main/feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/feedback.h -------------------------------------------------------------------------------- /src/mesa/main/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/fog.c -------------------------------------------------------------------------------- /src/mesa/main/fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/fog.h -------------------------------------------------------------------------------- /src/mesa/main/formats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/formats.c -------------------------------------------------------------------------------- /src/mesa/main/formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/formats.h -------------------------------------------------------------------------------- /src/mesa/main/genmipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/genmipmap.c -------------------------------------------------------------------------------- /src/mesa/main/genmipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/genmipmap.h -------------------------------------------------------------------------------- /src/mesa/main/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/get.c -------------------------------------------------------------------------------- /src/mesa/main/get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/get.h -------------------------------------------------------------------------------- /src/mesa/main/getstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/getstring.c -------------------------------------------------------------------------------- /src/mesa/main/glformats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/glformats.c -------------------------------------------------------------------------------- /src/mesa/main/glformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/glformats.h -------------------------------------------------------------------------------- /src/mesa/main/glheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/glheader.h -------------------------------------------------------------------------------- /src/mesa/main/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/hash.c -------------------------------------------------------------------------------- /src/mesa/main/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/hash.h -------------------------------------------------------------------------------- /src/mesa/main/hint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/hint.c -------------------------------------------------------------------------------- /src/mesa/main/hint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/hint.h -------------------------------------------------------------------------------- /src/mesa/main/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/histogram.c -------------------------------------------------------------------------------- /src/mesa/main/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/histogram.h -------------------------------------------------------------------------------- /src/mesa/main/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/image.c -------------------------------------------------------------------------------- /src/mesa/main/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/image.h -------------------------------------------------------------------------------- /src/mesa/main/imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/imports.c -------------------------------------------------------------------------------- /src/mesa/main/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/imports.h -------------------------------------------------------------------------------- /src/mesa/main/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/light.c -------------------------------------------------------------------------------- /src/mesa/main/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/light.h -------------------------------------------------------------------------------- /src/mesa/main/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/lines.c -------------------------------------------------------------------------------- /src/mesa/main/lines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/lines.h -------------------------------------------------------------------------------- /src/mesa/main/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/macros.h -------------------------------------------------------------------------------- /src/mesa/main/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/matrix.c -------------------------------------------------------------------------------- /src/mesa/main/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/matrix.h -------------------------------------------------------------------------------- /src/mesa/main/mipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/mipmap.c -------------------------------------------------------------------------------- /src/mesa/main/mipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/mipmap.h -------------------------------------------------------------------------------- /src/mesa/main/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/mm.c -------------------------------------------------------------------------------- /src/mesa/main/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/mm.h -------------------------------------------------------------------------------- /src/mesa/main/mtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/mtypes.h -------------------------------------------------------------------------------- /src/mesa/main/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/pack.c -------------------------------------------------------------------------------- /src/mesa/main/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/pack.h -------------------------------------------------------------------------------- /src/mesa/main/pack_tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/pack_tmp.h -------------------------------------------------------------------------------- /src/mesa/main/pbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/pbo.c -------------------------------------------------------------------------------- /src/mesa/main/pbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/pbo.h -------------------------------------------------------------------------------- /src/mesa/main/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/pixel.c -------------------------------------------------------------------------------- /src/mesa/main/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/pixel.h -------------------------------------------------------------------------------- /src/mesa/main/points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/points.c -------------------------------------------------------------------------------- /src/mesa/main/points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/points.h -------------------------------------------------------------------------------- /src/mesa/main/polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/polygon.c -------------------------------------------------------------------------------- /src/mesa/main/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/polygon.h -------------------------------------------------------------------------------- /src/mesa/main/queryobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/queryobj.c -------------------------------------------------------------------------------- /src/mesa/main/queryobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/queryobj.h -------------------------------------------------------------------------------- /src/mesa/main/rastpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/rastpos.c -------------------------------------------------------------------------------- /src/mesa/main/rastpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/rastpos.h -------------------------------------------------------------------------------- /src/mesa/main/readpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/readpix.c -------------------------------------------------------------------------------- /src/mesa/main/readpix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/readpix.h -------------------------------------------------------------------------------- /src/mesa/main/remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/remap.c -------------------------------------------------------------------------------- /src/mesa/main/remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/remap.h -------------------------------------------------------------------------------- /src/mesa/main/scissor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/scissor.c -------------------------------------------------------------------------------- /src/mesa/main/scissor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/scissor.h -------------------------------------------------------------------------------- /src/mesa/main/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/set.c -------------------------------------------------------------------------------- /src/mesa/main/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/set.h -------------------------------------------------------------------------------- /src/mesa/main/shaderapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/shaderapi.c -------------------------------------------------------------------------------- /src/mesa/main/shaderapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/shaderapi.h -------------------------------------------------------------------------------- /src/mesa/main/shaderobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/shaderobj.c -------------------------------------------------------------------------------- /src/mesa/main/shaderobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/shaderobj.h -------------------------------------------------------------------------------- /src/mesa/main/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/shared.c -------------------------------------------------------------------------------- /src/mesa/main/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/shared.h -------------------------------------------------------------------------------- /src/mesa/main/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/state.c -------------------------------------------------------------------------------- /src/mesa/main/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/state.h -------------------------------------------------------------------------------- /src/mesa/main/stencil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/stencil.c -------------------------------------------------------------------------------- /src/mesa/main/stencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/stencil.h -------------------------------------------------------------------------------- /src/mesa/main/syncobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/syncobj.c -------------------------------------------------------------------------------- /src/mesa/main/syncobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/syncobj.h -------------------------------------------------------------------------------- /src/mesa/main/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /main-test 2 | -------------------------------------------------------------------------------- /src/mesa/main/texenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texenv.c -------------------------------------------------------------------------------- /src/mesa/main/texenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texenv.h -------------------------------------------------------------------------------- /src/mesa/main/texformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texformat.c -------------------------------------------------------------------------------- /src/mesa/main/texformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texformat.h -------------------------------------------------------------------------------- /src/mesa/main/texgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texgen.c -------------------------------------------------------------------------------- /src/mesa/main/texgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texgen.h -------------------------------------------------------------------------------- /src/mesa/main/teximage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/teximage.c -------------------------------------------------------------------------------- /src/mesa/main/teximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/teximage.h -------------------------------------------------------------------------------- /src/mesa/main/texobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texobj.c -------------------------------------------------------------------------------- /src/mesa/main/texobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texobj.h -------------------------------------------------------------------------------- /src/mesa/main/texparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texparam.c -------------------------------------------------------------------------------- /src/mesa/main/texparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texparam.h -------------------------------------------------------------------------------- /src/mesa/main/texstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texstate.c -------------------------------------------------------------------------------- /src/mesa/main/texstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texstate.h -------------------------------------------------------------------------------- /src/mesa/main/texstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texstore.c -------------------------------------------------------------------------------- /src/mesa/main/texstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/texstore.h -------------------------------------------------------------------------------- /src/mesa/main/uniforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/uniforms.c -------------------------------------------------------------------------------- /src/mesa/main/uniforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/uniforms.h -------------------------------------------------------------------------------- /src/mesa/main/varray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/varray.c -------------------------------------------------------------------------------- /src/mesa/main/varray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/varray.h -------------------------------------------------------------------------------- /src/mesa/main/vdpau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/vdpau.c -------------------------------------------------------------------------------- /src/mesa/main/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/vdpau.h -------------------------------------------------------------------------------- /src/mesa/main/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/version.c -------------------------------------------------------------------------------- /src/mesa/main/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/version.h -------------------------------------------------------------------------------- /src/mesa/main/viewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/viewport.c -------------------------------------------------------------------------------- /src/mesa/main/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/viewport.h -------------------------------------------------------------------------------- /src/mesa/main/vtxfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/vtxfmt.c -------------------------------------------------------------------------------- /src/mesa/main/vtxfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/main/vtxfmt.h -------------------------------------------------------------------------------- /src/mesa/math/m_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_debug.h -------------------------------------------------------------------------------- /src/mesa/math/m_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_eval.c -------------------------------------------------------------------------------- /src/mesa/math/m_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_eval.h -------------------------------------------------------------------------------- /src/mesa/math/m_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_matrix.c -------------------------------------------------------------------------------- /src/mesa/math/m_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_matrix.h -------------------------------------------------------------------------------- /src/mesa/math/m_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_vector.c -------------------------------------------------------------------------------- /src/mesa/math/m_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_vector.h -------------------------------------------------------------------------------- /src/mesa/math/m_xform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_xform.c -------------------------------------------------------------------------------- /src/mesa/math/m_xform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/math/m_xform.h -------------------------------------------------------------------------------- /src/mesa/sparc/norm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/sparc/norm.S -------------------------------------------------------------------------------- /src/mesa/sparc/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/sparc/sparc.c -------------------------------------------------------------------------------- /src/mesa/sparc/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/sparc/sparc.h -------------------------------------------------------------------------------- /src/mesa/sparc/xform.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/sparc/xform.S -------------------------------------------------------------------------------- /src/mesa/swrast/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/NOTES -------------------------------------------------------------------------------- /src/mesa/swrast/s_alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_alpha.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_alpha.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_blend.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_blend.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_blit.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_chan.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_clear.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_depth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_depth.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_depth.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_fog.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_fog.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_lines.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_lines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_lines.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_logic.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_logic.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_span.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_span.h -------------------------------------------------------------------------------- /src/mesa/swrast/s_zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_zoom.c -------------------------------------------------------------------------------- /src/mesa/swrast/s_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/s_zoom.h -------------------------------------------------------------------------------- /src/mesa/swrast/swrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/swrast/swrast.h -------------------------------------------------------------------------------- /src/mesa/tnl/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/NOTES -------------------------------------------------------------------------------- /src/mesa/tnl/t_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_context.c -------------------------------------------------------------------------------- /src/mesa/tnl/t_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_context.h -------------------------------------------------------------------------------- /src/mesa/tnl/t_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_draw.c -------------------------------------------------------------------------------- /src/mesa/tnl/t_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_pipeline.c -------------------------------------------------------------------------------- /src/mesa/tnl/t_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_pipeline.h -------------------------------------------------------------------------------- /src/mesa/tnl/t_vb_fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_vb_fog.c -------------------------------------------------------------------------------- /src/mesa/tnl/t_vb_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_vb_light.c -------------------------------------------------------------------------------- /src/mesa/tnl/t_vertex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_vertex.c -------------------------------------------------------------------------------- /src/mesa/tnl/t_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_vertex.h -------------------------------------------------------------------------------- /src/mesa/tnl/t_vp_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_vp_build.c -------------------------------------------------------------------------------- /src/mesa/tnl/t_vp_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/t_vp_build.h -------------------------------------------------------------------------------- /src/mesa/tnl/tnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl/tnl.h -------------------------------------------------------------------------------- /src/mesa/tnl_dd/t_dd_vb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/tnl_dd/t_dd_vb.c -------------------------------------------------------------------------------- /src/mesa/vbo/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo.h -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_attrib.h -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_exec.c -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_exec.h -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_noop.c -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_noop.h -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_rebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_rebase.c -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_save.c -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_save.h -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_split.c -------------------------------------------------------------------------------- /src/mesa/vbo/vbo_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/vbo/vbo_split.h -------------------------------------------------------------------------------- /src/mesa/x86-64/x86-64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86-64/x86-64.c -------------------------------------------------------------------------------- /src/mesa/x86-64/x86-64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86-64/x86-64.h -------------------------------------------------------------------------------- /src/mesa/x86-64/xform4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86-64/xform4.S -------------------------------------------------------------------------------- /src/mesa/x86/3dnow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/3dnow.c -------------------------------------------------------------------------------- /src/mesa/x86/3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/3dnow.h -------------------------------------------------------------------------------- /src/mesa/x86/assyntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/assyntax.h -------------------------------------------------------------------------------- /src/mesa/x86/clip_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/clip_args.h -------------------------------------------------------------------------------- /src/mesa/x86/common_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/common_x86.c -------------------------------------------------------------------------------- /src/mesa/x86/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/mmx.h -------------------------------------------------------------------------------- /src/mesa/x86/mmx_blend.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/mmx_blend.S -------------------------------------------------------------------------------- /src/mesa/x86/norm_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/norm_args.h -------------------------------------------------------------------------------- /src/mesa/x86/sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/sse.c -------------------------------------------------------------------------------- /src/mesa/x86/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/sse.h -------------------------------------------------------------------------------- /src/mesa/x86/sse_normal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/sse_normal.S -------------------------------------------------------------------------------- /src/mesa/x86/sse_xform1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/sse_xform1.S -------------------------------------------------------------------------------- /src/mesa/x86/sse_xform2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/sse_xform2.S -------------------------------------------------------------------------------- /src/mesa/x86/sse_xform3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/sse_xform3.S -------------------------------------------------------------------------------- /src/mesa/x86/sse_xform4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/sse_xform4.S -------------------------------------------------------------------------------- /src/mesa/x86/x86_xform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/x86_xform.c -------------------------------------------------------------------------------- /src/mesa/x86/x86_xform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/x86_xform.h -------------------------------------------------------------------------------- /src/mesa/x86/x86_xform2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/x86_xform2.S -------------------------------------------------------------------------------- /src/mesa/x86/x86_xform3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/x86_xform3.S -------------------------------------------------------------------------------- /src/mesa/x86/x86_xform4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/x86_xform4.S -------------------------------------------------------------------------------- /src/mesa/x86/xform_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValveSoftware/steamos_mesa/HEAD/src/mesa/x86/xform_args.h --------------------------------------------------------------------------------