├── .github └── workflows │ └── android.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ltw ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ └── tinywrapper │ ├── Android.mk │ ├── Application.mk │ ├── GL │ ├── gl.h │ ├── glext.h │ └── osmesa.h │ ├── basevertex.c │ ├── basevertex.h │ ├── blending.c │ ├── egl.c │ ├── egl.h │ ├── env.c │ ├── env.h │ ├── es3_extended.h │ ├── es3_functions.h │ ├── es3_overrides.h │ ├── framebuffer.c │ ├── glformats.c │ ├── glformats.h │ ├── glsl_optimizer │ ├── .gitattributes │ ├── .gitignore │ ├── CMakePresets.json │ ├── include │ │ ├── GL │ │ │ ├── KHR │ │ │ │ └── khrplatform.h │ │ │ ├── gl.h │ │ │ └── glext.h │ │ ├── GLES2 │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ └── gl2platform.h │ │ ├── android │ │ │ ├── defines.h │ │ │ ├── log.h │ │ │ └── sync.h │ │ ├── c11 │ │ │ ├── threads.h │ │ │ ├── threads_posix.h │ │ │ └── time.h │ │ ├── c11_compat.h │ │ ├── c99_alloca.h │ │ ├── c99_compat.h │ │ ├── c99_math.h │ │ ├── ndk │ │ │ └── sync.h │ │ ├── no_extern_c.h │ │ ├── optimizer │ │ │ └── optimizer.h │ │ ├── p_defines.h │ │ └── p_state.h │ ├── jni │ │ └── Application.mk │ └── src │ │ ├── code │ │ ├── GlslConvert.cpp │ │ ├── GlslConvert.h │ │ ├── c_wrapper.cpp │ │ ├── c_wrapper.h │ │ ├── ir_print_glsl_visitor.cpp │ │ ├── ir_print_glsl_visitor.h │ │ ├── ir_print_ir_visitor.cpp │ │ ├── ir_print_ir_visitor.h │ │ ├── optimizer.cpp │ │ └── st_printf.h │ │ ├── compiler │ │ ├── builtin_type_macros.h │ │ ├── glsl │ │ │ ├── CMakeLists.txt │ │ │ ├── CrossPlatformSettings_piece_all.glsl │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── ast.h │ │ │ ├── ast_array_index.cpp │ │ │ ├── ast_expr.cpp │ │ │ ├── ast_function.cpp │ │ │ ├── ast_to_hir.cpp │ │ │ ├── ast_type.cpp │ │ │ ├── astc_decoder.glsl │ │ │ ├── astc_glsl.h │ │ │ ├── bc1.glsl │ │ │ ├── bc1_glsl.h │ │ │ ├── bc4.glsl │ │ │ ├── bc4_glsl.h │ │ │ ├── builtin_functions.cpp │ │ │ ├── builtin_functions.h │ │ │ ├── builtin_int64.h │ │ │ ├── builtin_types.cpp │ │ │ ├── builtin_variables.cpp │ │ │ ├── cross_platform_settings_piece_all.h │ │ │ ├── etc2_rgba_stitch.glsl │ │ │ ├── etc2_rgba_stitch_glsl.h │ │ │ ├── float64.glsl │ │ │ ├── float64_glsl.h │ │ │ ├── generate_ir.cpp │ │ │ ├── gl_nir.h │ │ │ ├── gl_nir_link_atomics.c │ │ │ ├── gl_nir_link_uniform_blocks.c │ │ │ ├── gl_nir_link_uniform_initializers.c │ │ │ ├── gl_nir_link_uniforms.c │ │ │ ├── gl_nir_link_varyings.c │ │ │ ├── gl_nir_link_varyings.h │ │ │ ├── gl_nir_link_xfb.c │ │ │ ├── gl_nir_linker.c │ │ │ ├── gl_nir_linker.h │ │ │ ├── gl_nir_lower_atomics.c │ │ │ ├── gl_nir_lower_buffers.c │ │ │ ├── gl_nir_lower_images.c │ │ │ ├── gl_nir_lower_packed_varyings.c │ │ │ ├── gl_nir_lower_samplers.c │ │ │ ├── gl_nir_lower_samplers_as_deref.c │ │ │ ├── gl_nir_lower_xfb_varying.c │ │ │ ├── gl_nir_opt_dead_builtin_varyings.c │ │ │ ├── glcpp │ │ │ │ ├── README │ │ │ │ ├── glcpp-lex.c │ │ │ │ ├── glcpp-lex.l │ │ │ │ ├── glcpp-parse.c │ │ │ │ ├── glcpp-parse.h │ │ │ │ ├── glcpp-parse.y │ │ │ │ ├── glcpp.c │ │ │ │ ├── glcpp.h │ │ │ │ ├── meson.build │ │ │ │ ├── pp.c │ │ │ │ ├── pp_standalone_scaffolding.c │ │ │ │ └── pp_standalone_scaffolding.h │ │ │ ├── glsl_compiler │ │ │ ├── glsl_lexer.cpp │ │ │ ├── glsl_lexer.ll │ │ │ ├── glsl_parser.cpp │ │ │ ├── glsl_parser.h │ │ │ ├── glsl_parser.yy │ │ │ ├── glsl_parser_extras.cpp │ │ │ ├── glsl_parser_extras.h │ │ │ ├── glsl_symbol_table.cpp │ │ │ ├── glsl_symbol_table.h │ │ │ ├── glsl_to_nir.cpp │ │ │ ├── glsl_to_nir.h │ │ │ ├── hir_field_selection.cpp │ │ │ ├── int64.glsl │ │ │ ├── ir.cpp │ │ │ ├── ir.h │ │ │ ├── ir_array_refcount.cpp │ │ │ ├── ir_array_refcount.h │ │ │ ├── ir_basic_block.cpp │ │ │ ├── ir_basic_block.h │ │ │ ├── ir_builder.cpp │ │ │ ├── ir_builder.h │ │ │ ├── ir_builder_print_visitor.cpp │ │ │ ├── ir_builder_print_visitor.h │ │ │ ├── ir_clone.cpp │ │ │ ├── ir_constant_expression.cpp │ │ │ ├── ir_equals.cpp │ │ │ ├── ir_expression_flattening.cpp │ │ │ ├── ir_expression_flattening.h │ │ │ ├── ir_expression_operation.py │ │ │ ├── ir_expression_operation_constant.h │ │ │ ├── ir_expression_operation_strings.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_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_uniform.h │ │ │ ├── ir_validate.cpp │ │ │ ├── ir_variable_refcount.cpp │ │ │ ├── ir_variable_refcount.h │ │ │ ├── ir_visitor.h │ │ │ ├── link_functions.cpp │ │ │ ├── link_interface_blocks.cpp │ │ │ ├── link_uniform_block_active_visitor.cpp │ │ │ ├── link_uniform_block_active_visitor.h │ │ │ ├── link_uniform_blocks.cpp │ │ │ ├── link_uniforms.cpp │ │ │ ├── link_varyings.cpp │ │ │ ├── link_varyings.h │ │ │ ├── linker.cpp │ │ │ ├── linker.h │ │ │ ├── linker_util.cpp │ │ │ ├── linker_util.h │ │ │ ├── list.h │ │ │ ├── loop_analysis.cpp │ │ │ ├── loop_analysis.h │ │ │ ├── lower_blend_equation_advanced.cpp │ │ │ ├── lower_builtins.cpp │ │ │ ├── lower_discard.cpp │ │ │ ├── lower_discard_flow.cpp │ │ │ ├── lower_distance.cpp │ │ │ ├── lower_instructions.cpp │ │ │ ├── lower_int64.cpp │ │ │ ├── lower_jumps.cpp │ │ │ ├── lower_mat_op_to_vec.cpp │ │ │ ├── lower_named_interface_blocks.cpp │ │ │ ├── lower_packing_builtins.cpp │ │ │ ├── lower_precision.cpp │ │ │ ├── lower_subroutine.cpp │ │ │ ├── lower_vec_index_to_cond_assign.cpp │ │ │ ├── lower_vector_derefs.cpp │ │ │ ├── meson.build │ │ │ ├── opt_add_neg_to_sub.h │ │ │ ├── opt_algebraic.cpp │ │ │ ├── opt_dead_builtin_variables.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_minmax.cpp │ │ │ ├── opt_rebalance_tree.cpp │ │ │ ├── opt_tree_grafting.cpp │ │ │ ├── program.h │ │ │ ├── propagate_invariance.cpp │ │ │ ├── s_expression.cpp │ │ │ ├── s_expression.h │ │ │ ├── standalone_scaffolding.cpp │ │ │ ├── standalone_scaffolding.h │ │ │ ├── string_to_uint_map.cpp │ │ │ └── string_to_uint_map.h │ │ ├── glsl_types.cpp │ │ ├── glsl_types.h │ │ ├── ir_expression_operation.h │ │ ├── meson.build │ │ ├── nir │ │ │ ├── README │ │ │ ├── meson.build │ │ │ ├── nir.c │ │ │ ├── nir.h │ │ │ ├── nir_algebraic.py │ │ │ ├── nir_builder.c │ │ │ ├── nir_builder.h │ │ │ ├── nir_builder_opcodes.h │ │ │ ├── nir_builder_opcodes_h.py │ │ │ ├── nir_builtin_builder.c │ │ │ ├── nir_builtin_builder.h │ │ │ ├── nir_clone.c │ │ │ ├── nir_constant_expressions.c │ │ │ ├── nir_constant_expressions.h │ │ │ ├── nir_constant_expressions.py │ │ │ ├── nir_control_flow.c │ │ │ ├── nir_control_flow.h │ │ │ ├── nir_control_flow_private.h │ │ │ ├── nir_conversion_builder.h │ │ │ ├── nir_deref.c │ │ │ ├── nir_deref.h │ │ │ ├── nir_divergence_analysis.c │ │ │ ├── nir_dominance.c │ │ │ ├── nir_format_convert.h │ │ │ ├── nir_from_ssa.c │ │ │ ├── nir_gather_info.c │ │ │ ├── nir_gather_ssa_types.c │ │ │ ├── nir_gather_xfb_info.c │ │ │ ├── nir_group_loads.c │ │ │ ├── nir_gs_count_vertices.c │ │ │ ├── nir_inline_functions.c │ │ │ ├── nir_inline_helpers.h │ │ │ ├── nir_inline_uniforms.c │ │ │ ├── nir_instr_set.c │ │ │ ├── nir_instr_set.h │ │ │ ├── nir_intrinsics.c │ │ │ ├── nir_intrinsics.h │ │ │ ├── nir_intrinsics.py │ │ │ ├── nir_intrinsics_c.py │ │ │ ├── nir_intrinsics_h.py │ │ │ ├── nir_intrinsics_indices.h │ │ │ ├── nir_intrinsics_indices_h.py │ │ │ ├── nir_linking_helpers.c │ │ │ ├── nir_liveness.c │ │ │ ├── nir_loop_analyze.c │ │ │ ├── nir_loop_analyze.h │ │ │ ├── nir_lower_alpha_test.c │ │ │ ├── nir_lower_alu.c │ │ │ ├── nir_lower_alu_width.c │ │ │ ├── nir_lower_amul.c │ │ │ ├── nir_lower_array_deref_of_vec.c │ │ │ ├── nir_lower_atomics_to_ssbo.c │ │ │ ├── nir_lower_bit_size.c │ │ │ ├── nir_lower_bitmap.c │ │ │ ├── nir_lower_blend.c │ │ │ ├── nir_lower_blend.h │ │ │ ├── nir_lower_bool_to_bitsize.c │ │ │ ├── nir_lower_bool_to_float.c │ │ │ ├── nir_lower_bool_to_int32.c │ │ │ ├── nir_lower_cl_images.c │ │ │ ├── nir_lower_clamp_color_outputs.c │ │ │ ├── nir_lower_clip.c │ │ │ ├── nir_lower_clip_cull_distance_arrays.c │ │ │ ├── nir_lower_clip_disable.c │ │ │ ├── nir_lower_clip_halfz.c │ │ │ ├── nir_lower_const_arrays_to_uniforms.c │ │ │ ├── nir_lower_continue_constructs.c │ │ │ ├── nir_lower_convert_alu_types.c │ │ │ ├── nir_lower_discard_if.c │ │ │ ├── nir_lower_discard_or_demote.c │ │ │ ├── nir_lower_double_ops.c │ │ │ ├── nir_lower_drawpixels.c │ │ │ ├── nir_lower_fb_read.c │ │ │ ├── nir_lower_flatshade.c │ │ │ ├── nir_lower_flrp.c │ │ │ ├── nir_lower_fp16_conv.c │ │ │ ├── nir_lower_fragcolor.c │ │ │ ├── nir_lower_fragcoord_wtrans.c │ │ │ ├── nir_lower_frexp.c │ │ │ ├── nir_lower_global_vars_to_local.c │ │ │ ├── nir_lower_goto_ifs.c │ │ │ ├── nir_lower_gs_intrinsics.c │ │ │ ├── nir_lower_helper_writes.c │ │ │ ├── nir_lower_idiv.c │ │ │ ├── nir_lower_image.c │ │ │ ├── nir_lower_indirect_derefs.c │ │ │ ├── nir_lower_input_attachments.c │ │ │ ├── nir_lower_int64.c │ │ │ ├── nir_lower_int_to_float.c │ │ │ ├── nir_lower_interpolation.c │ │ │ ├── nir_lower_io.c │ │ │ ├── nir_lower_io_arrays_to_elements.c │ │ │ ├── nir_lower_io_to_scalar.c │ │ │ ├── nir_lower_io_to_temporaries.c │ │ │ ├── nir_lower_io_to_vector.c │ │ │ ├── nir_lower_is_helper_invocation.c │ │ │ ├── nir_lower_load_const_to_scalar.c │ │ │ ├── nir_lower_locals_to_regs.c │ │ │ ├── nir_lower_mediump.c │ │ │ ├── nir_lower_mem_access_bit_sizes.c │ │ │ ├── nir_lower_memcpy.c │ │ │ ├── nir_lower_memory_model.c │ │ │ ├── nir_lower_multiview.c │ │ │ ├── nir_lower_non_uniform_access.c │ │ │ ├── nir_lower_packing.c │ │ │ ├── nir_lower_passthrough_edgeflags.c │ │ │ ├── nir_lower_patch_vertices.c │ │ │ ├── nir_lower_phis_to_scalar.c │ │ │ ├── nir_lower_pntc_ytransform.c │ │ │ ├── nir_lower_point_size.c │ │ │ ├── nir_lower_point_size_mov.c │ │ │ ├── nir_lower_point_smooth.c │ │ │ ├── nir_lower_poly_line_smooth.c │ │ │ ├── nir_lower_printf.c │ │ │ ├── nir_lower_readonly_images_to_tex.c │ │ │ ├── nir_lower_regs_to_ssa.c │ │ │ ├── nir_lower_returns.c │ │ │ ├── nir_lower_samplers.c │ │ │ ├── nir_lower_scratch.c │ │ │ ├── nir_lower_shader_calls.c │ │ │ ├── nir_lower_single_sampled.c │ │ │ ├── nir_lower_ssbo.c │ │ │ ├── nir_lower_subgroups.c │ │ │ ├── nir_lower_system_values.c │ │ │ ├── nir_lower_sysvals_to_varyings.c │ │ │ ├── nir_lower_task_shader.c │ │ │ ├── nir_lower_tex.c │ │ │ ├── nir_lower_tex_shadow.c │ │ │ ├── nir_lower_texcoord_replace.c │ │ │ ├── nir_lower_texcoord_replace_late.c │ │ │ ├── nir_lower_to_source_mods.c │ │ │ ├── nir_lower_two_sided_color.c │ │ │ ├── nir_lower_ubo_vec4.c │ │ │ ├── nir_lower_undef_to_zero.c │ │ │ ├── nir_lower_uniforms_to_ubo.c │ │ │ ├── nir_lower_var_copies.c │ │ │ ├── nir_lower_variable_initializers.c │ │ │ ├── nir_lower_vars_to_ssa.c │ │ │ ├── nir_lower_vec3_to_vec4.c │ │ │ ├── nir_lower_vec_to_movs.c │ │ │ ├── nir_lower_viewport_transform.c │ │ │ ├── nir_lower_wpos_center.c │ │ │ ├── nir_lower_wpos_ytransform.c │ │ │ ├── nir_lower_wrmasks.c │ │ │ ├── nir_metadata.c │ │ │ ├── nir_mod_analysis.c │ │ │ ├── nir_move_vec_src_uses_to_dest.c │ │ │ ├── nir_normalize_cubemap_coords.c │ │ │ ├── nir_opcodes.c │ │ │ ├── nir_opcodes.h │ │ │ ├── nir_opcodes.py │ │ │ ├── nir_opcodes_c.py │ │ │ ├── nir_opcodes_h.py │ │ │ ├── nir_opt_access.c │ │ │ ├── nir_opt_algebraic.c │ │ │ ├── nir_opt_algebraic.py │ │ │ ├── nir_opt_barriers.c │ │ │ ├── nir_opt_combine_stores.c │ │ │ ├── nir_opt_comparison_pre.c │ │ │ ├── nir_opt_conditional_discard.c │ │ │ ├── nir_opt_constant_folding.c │ │ │ ├── nir_opt_copy_prop_vars.c │ │ │ ├── nir_opt_copy_propagate.c │ │ │ ├── nir_opt_cse.c │ │ │ ├── nir_opt_dce.c │ │ │ ├── nir_opt_dead_cf.c │ │ │ ├── nir_opt_dead_write_vars.c │ │ │ ├── nir_opt_find_array_copies.c │ │ │ ├── nir_opt_fragdepth.c │ │ │ ├── nir_opt_gcm.c │ │ │ ├── nir_opt_idiv_const.c │ │ │ ├── nir_opt_if.c │ │ │ ├── nir_opt_intrinsics.c │ │ │ ├── nir_opt_large_constants.c │ │ │ ├── nir_opt_load_store_vectorize.c │ │ │ ├── nir_opt_loop_unroll.c │ │ │ ├── nir_opt_memcpy.c │ │ │ ├── nir_opt_move.c │ │ │ ├── nir_opt_move_discards_to_top.c │ │ │ ├── nir_opt_non_uniform_access.c │ │ │ ├── nir_opt_offsets.c │ │ │ ├── nir_opt_peephole_select.c │ │ │ ├── nir_opt_phi_precision.c │ │ │ ├── nir_opt_preamble.c │ │ │ ├── nir_opt_ray_queries.c │ │ │ ├── nir_opt_rematerialize_compares.c │ │ │ ├── nir_opt_remove_phis.c │ │ │ ├── nir_opt_shrink_stores.c │ │ │ ├── nir_opt_shrink_vectors.c │ │ │ ├── nir_opt_sink.c │ │ │ ├── nir_opt_trivial_continues.c │ │ │ ├── nir_opt_undef.c │ │ │ ├── nir_opt_uniform_atomics.c │ │ │ ├── nir_opt_vectorize.c │ │ │ ├── nir_passthrough_gs.c │ │ │ ├── nir_passthrough_tcs.c │ │ │ ├── nir_phi_builder.c │ │ │ ├── nir_phi_builder.h │ │ │ ├── nir_print.c │ │ │ ├── nir_propagate_invariant.c │ │ │ ├── nir_range_analysis.c │ │ │ ├── nir_range_analysis.h │ │ │ ├── nir_remove_dead_variables.c │ │ │ ├── nir_repair_ssa.c │ │ │ ├── nir_scale_fdiv.c │ │ │ ├── nir_schedule.c │ │ │ ├── nir_schedule.h │ │ │ ├── nir_search.c │ │ │ ├── nir_search.h │ │ │ ├── nir_search_helpers.h │ │ │ ├── nir_serialize.c │ │ │ ├── nir_serialize.h │ │ │ ├── nir_split_64bit_vec3_and_vec4.c │ │ │ ├── nir_split_per_member_structs.c │ │ │ ├── nir_split_var_copies.c │ │ │ ├── nir_split_vars.c │ │ │ ├── nir_sweep.c │ │ │ ├── nir_to_lcssa.c │ │ │ ├── nir_validate.c │ │ │ ├── nir_vla.h │ │ │ ├── nir_vulkan.h │ │ │ ├── nir_worklist.c │ │ │ ├── nir_worklist.h │ │ │ └── nir_xfb_info.h │ │ ├── nir_gl_types.h │ │ ├── nir_types.cpp │ │ ├── nir_types.h │ │ ├── shader_enums.c │ │ ├── shader_enums.h │ │ └── shader_info.h │ │ ├── gallium │ │ ├── auxiliary │ │ │ └── util │ │ │ │ └── u_half.h │ │ └── include │ │ │ ├── frontend │ │ │ └── api.h │ │ │ └── pipe │ │ │ ├── p_compiler.h │ │ │ ├── p_context.h │ │ │ ├── p_defines.h │ │ │ ├── p_screen.h │ │ │ ├── p_shader_tokens.h │ │ │ ├── p_state.h │ │ │ └── p_video_enums.h │ │ ├── git_sha1.h │ │ ├── mapi │ │ └── glapi │ │ │ └── glapi.h │ │ ├── mesa │ │ ├── main │ │ │ ├── compiler.h │ │ │ ├── config.h │ │ │ ├── consts_exts.h │ │ │ ├── context.h │ │ │ ├── dd.h │ │ │ ├── debug_output.c │ │ │ ├── debug_output.h │ │ │ ├── dlist.h │ │ │ ├── draw.h │ │ │ ├── enums.h │ │ │ ├── errors.c │ │ │ ├── errors.h │ │ │ ├── extensions.h │ │ │ ├── extensions_table.c │ │ │ ├── extensions_table.h │ │ │ ├── formats.h │ │ │ ├── glconfig.h │ │ │ ├── glheader.h │ │ │ ├── hash.h │ │ │ ├── imports.c │ │ │ ├── imports.h │ │ │ ├── macros.h │ │ │ ├── menums.h │ │ │ ├── mtypes.h │ │ │ ├── shader_types.h │ │ │ ├── shaderobj.h │ │ │ ├── uniforms.h │ │ │ └── version.h │ │ ├── math │ │ │ └── m_matrix.h │ │ ├── program │ │ │ ├── ir_to_mesa.h │ │ │ ├── link_program.h │ │ │ ├── prog_instruction.h │ │ │ ├── prog_parameter.c │ │ │ ├── prog_parameter.h │ │ │ ├── prog_statevars.h │ │ │ ├── program.h │ │ │ ├── symbol_table.c │ │ │ └── symbol_table.h │ │ └── vbo │ │ │ ├── vbo.h │ │ │ └── vbo_attrib.h │ │ └── util │ │ ├── 00-mesa-defaults.conf │ │ ├── 00-radv-defaults.conf │ │ ├── anon_file.c │ │ ├── anon_file.h │ │ ├── bigmath.h │ │ ├── bitpack_helpers.h │ │ ├── bitscan.c │ │ ├── bitscan.h │ │ ├── bitset.h │ │ ├── blob.c │ │ ├── blob.h │ │ ├── build_id.c │ │ ├── build_id.h │ │ ├── cnd_monotonic.h │ │ ├── compat_layer.cpp │ │ ├── compat_layer.h │ │ ├── compiler.h │ │ ├── compress.c │ │ ├── compress.h │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── dag.c │ │ ├── dag.h │ │ ├── detect.h │ │ ├── detect_arch.h │ │ ├── detect_cc.h │ │ ├── detect_os.h │ │ ├── disk_cache.c │ │ ├── disk_cache.h │ │ ├── disk_cache_os.c │ │ ├── disk_cache_os.h │ │ ├── double.c │ │ ├── double.h │ │ ├── driconf_static.py │ │ ├── enum_operators.h │ │ ├── fast_idiv_by_const.c │ │ ├── fast_idiv_by_const.h │ │ ├── fast_urem_by_const.h │ │ ├── format │ │ ├── format_utils.h │ │ ├── meson.build │ │ ├── texcompress_bptc_tmp.h │ │ ├── texcompress_etc_tmp.h │ │ ├── texcompress_s3tc_tmp.h │ │ ├── u_format.c │ │ ├── u_format.csv │ │ ├── u_format.h │ │ ├── u_format_bptc.c │ │ ├── u_format_bptc.h │ │ ├── u_format_etc.c │ │ ├── u_format_etc.h │ │ ├── u_format_fxt1.c │ │ ├── u_format_fxt1.h │ │ ├── u_format_latc.c │ │ ├── u_format_latc.h │ │ ├── u_format_other.c │ │ ├── u_format_other.h │ │ ├── u_format_pack.h │ │ ├── u_format_pack.py │ │ ├── u_format_parse.py │ │ ├── u_format_rgtc.c │ │ ├── u_format_rgtc.h │ │ ├── u_format_s3tc.c │ │ ├── u_format_s3tc.h │ │ ├── u_format_table.c │ │ ├── u_format_table.py │ │ ├── u_format_unpack_neon.c │ │ ├── u_format_yuv.c │ │ ├── u_format_yuv.h │ │ ├── u_format_zs.c │ │ ├── u_format_zs.h │ │ └── u_formats.h │ │ ├── format_r11g11b10f.h │ │ ├── format_rgb9e5.h │ │ ├── format_srgb.c │ │ ├── format_srgb.h │ │ ├── format_srgb.py │ │ ├── fossilize_db.c │ │ ├── fossilize_db.h │ │ ├── futex.c │ │ ├── futex.h │ │ ├── glheader.h │ │ ├── glsl2spirv.py │ │ ├── half_float.c │ │ ├── half_float.h │ │ ├── hash_table.c │ │ ├── hash_table.h │ │ ├── libdrm.h │ │ ├── libsync.h │ │ ├── list.h │ │ ├── log.c │ │ ├── log.h │ │ ├── macros.h │ │ ├── mesa-sha1.c │ │ ├── mesa-sha1.h │ │ ├── mesa_cache_db.c │ │ ├── mesa_cache_db.h │ │ ├── mesa_cache_db_multipart.c │ │ ├── mesa_cache_db_multipart.h │ │ ├── meson.build │ │ ├── os_file.c │ │ ├── os_file.h │ │ ├── os_memory.h │ │ ├── os_memory_aligned.h │ │ ├── os_memory_debug.h │ │ ├── os_memory_fd.c │ │ ├── os_memory_fd.h │ │ ├── os_memory_stdc.h │ │ ├── os_misc.c │ │ ├── os_misc.h │ │ ├── os_mman.h │ │ ├── os_socket.c │ │ ├── os_socket.h │ │ ├── os_time.c │ │ ├── os_time.h │ │ ├── ptralloc.h │ │ ├── ralloc.c │ │ ├── ralloc.h │ │ ├── rand_xor.c │ │ ├── rand_xor.h │ │ ├── rb_tree.c │ │ ├── rb_tree.h │ │ ├── reallocarray.h │ │ ├── register_allocate.c │ │ ├── register_allocate.h │ │ ├── register_allocate_internal.h │ │ ├── rgtc.c │ │ ├── rgtc.h │ │ ├── rounding.h │ │ ├── set.c │ │ ├── set.h │ │ ├── sha1 │ │ ├── README │ │ ├── sha1.c │ │ └── sha1.h │ │ ├── simple_mtx.c │ │ ├── simple_mtx.h │ │ ├── slab.c │ │ ├── slab.h │ │ ├── softfloat.c │ │ ├── softfloat.h │ │ ├── sparse_array.c │ │ ├── sparse_array.h │ │ ├── streaming-load-memcpy.c │ │ ├── streaming-load-memcpy.h │ │ ├── string_buffer.c │ │ ├── string_buffer.h │ │ ├── strndup.h │ │ ├── strtod.c │ │ ├── strtod.h │ │ ├── texcompress_rgtc_tmp.h │ │ ├── u_atomic.c │ │ ├── u_atomic.h │ │ ├── u_call_once.c │ │ ├── u_call_once.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_memory.c │ │ ├── u_debug_refcnt.c │ │ ├── u_debug_refcnt.h │ │ ├── u_debug_stack.c │ │ ├── u_debug_stack.h │ │ ├── u_debug_stack_android.cpp │ │ ├── u_debug_symbol.c │ │ ├── u_debug_symbol.h │ │ ├── u_dl.c │ │ ├── u_dl.h │ │ ├── u_drm.h │ │ ├── u_dynarray.h │ │ ├── u_endian.h │ │ ├── u_hash_table.c │ │ ├── u_hash_table.h │ │ ├── u_idalloc.c │ │ ├── u_idalloc.h │ │ ├── u_math.c │ │ ├── u_math.h │ │ ├── u_memory.h │ │ ├── u_memset.h │ │ ├── u_mm.c │ │ ├── u_mm.h │ │ ├── u_pointer.h │ │ ├── u_printf.c │ │ ├── u_printf.h │ │ ├── u_process.c │ │ ├── u_process.h │ │ ├── u_qsort.cpp │ │ ├── u_qsort.h │ │ ├── u_queue.c │ │ ├── u_queue.h │ │ ├── u_string.h │ │ ├── u_thread.c │ │ ├── u_thread.h │ │ ├── u_vector.c │ │ ├── u_vector.h │ │ ├── u_worklist.c │ │ ├── u_worklist.h │ │ ├── vl_rbsp.h │ │ ├── vl_vlc.h │ │ ├── vma.c │ │ ├── vma.h │ │ ├── xxd.py │ │ └── xxhash.h │ ├── libraryinternal.h │ ├── license_notice.c │ ├── main.c │ ├── main.h │ ├── multidraw.c │ ├── of_buffer_copier.c │ ├── proc.c │ ├── proc.h │ ├── query.c │ ├── shader_wrapper.c │ ├── string_utils.c │ ├── string_utils.h │ ├── stubs.c │ ├── swizzle.c │ ├── swizzle.h │ ├── texture_tracker.c.unused │ ├── unordered_map │ ├── int_hash.c │ ├── int_hash.h │ ├── unordered_map.c │ └── unordered_map.h │ ├── version.script │ ├── vertexattrib.c │ └── vgpu_shaderconv │ ├── shaderconv.c │ └── shaderconv.h ├── settings.gradle └── wrapper ├── build.gradle └── src └── main ├── AndroidManifest.xml └── java └── git └── artdeell └── gl4eswrapper └── MainActivity.java /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ltw/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ltw/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/build.gradle -------------------------------------------------------------------------------- /ltw/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/proguard-rules.pro -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/Android.mk -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/Application.mk -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/GL/gl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/GL/glext.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/GL/osmesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/GL/osmesa.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/basevertex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/basevertex.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/basevertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/basevertex.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/blending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/blending.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/egl.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/egl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/env.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/env.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/es3_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/es3_extended.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/es3_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/es3_functions.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/es3_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/es3_overrides.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/framebuffer.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glformats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glformats.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glformats.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/.gitattributes -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/.gitignore -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/CMakePresets.json -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/GL/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/GL/KHR/khrplatform.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/GL/gl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/GL/glext.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/GLES2/gl2.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/GLES2/gl2ext.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/GLES2/gl2platform.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/android/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/android/defines.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/android/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/android/log.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/android/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/android/sync.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/c11/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/c11/threads.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/c11/threads_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/c11/threads_posix.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/c11/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/c11/time.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/c11_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/c11_compat.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/c99_alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/c99_alloca.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/c99_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/c99_compat.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/c99_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/c99_math.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/ndk/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/ndk/sync.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/no_extern_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/no_extern_c.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/optimizer/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/optimizer/optimizer.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/p_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/p_defines.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/include/p_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/include/p_state.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := c++_static -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/GlslConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/GlslConvert.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/GlslConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/GlslConvert.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/c_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/c_wrapper.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/c_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/c_wrapper.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_glsl_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_glsl_visitor.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_glsl_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_glsl_visitor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_ir_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_ir_visitor.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_ir_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/ir_print_ir_visitor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/optimizer.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/code/st_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/code/st_printf.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/builtin_type_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/builtin_type_macros.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/README -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/TODO -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_array_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_array_index.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_expr.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_function.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_to_hir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_to_hir.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ast_type.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/astc_decoder.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/astc_decoder.glsl -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/astc_glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/astc_glsl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc1.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc1.glsl -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc1_glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc1_glsl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc4.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc4.glsl -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc4_glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/bc4_glsl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_functions.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_functions.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_int64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_int64.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_types.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/builtin_variables.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/etc2_rgba_stitch.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/etc2_rgba_stitch.glsl -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/etc2_rgba_stitch_glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/etc2_rgba_stitch_glsl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/float64.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/float64.glsl -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/float64_glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/float64_glsl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/generate_ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/generate_ir.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_atomics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_atomics.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_uniform_blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_uniform_blocks.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_uniforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_uniforms.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_varyings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_varyings.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_varyings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_varyings.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_xfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_link_xfb.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_linker.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_linker.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_atomics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_atomics.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_buffers.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_images.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_packed_varyings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_packed_varyings.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_samplers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_samplers.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_xfb_varying.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/gl_nir_lower_xfb_varying.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/README -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-lex.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-lex.l -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-parse.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-parse.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp-parse.y -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/glcpp.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/meson.build -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glcpp/pp.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_compiler -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_lexer.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_lexer.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_lexer.ll -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser.yy -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser_extras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser_extras.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser_extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_parser_extras.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_symbol_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_symbol_table.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_symbol_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_symbol_table.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_to_nir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_to_nir.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_to_nir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/glsl_to_nir.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/hir_field_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/hir_field_selection.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/int64.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/int64.glsl -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_array_refcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_array_refcount.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_array_refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_array_refcount.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_basic_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_basic_block.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_basic_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_basic_block.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_builder.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_builder.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_builder_print_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_builder_print_visitor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_clone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_clone.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_constant_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_constant_expression.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_equals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_equals.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_expression_flattening.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_expression_flattening.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_expression_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_expression_operation.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_function.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_function_can_inline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_function_can_inline.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_function_inlining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_function_inlining.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_hierarchical_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_hierarchical_visitor.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_hierarchical_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_hierarchical_visitor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_hv_accept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_hv_accept.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_optimization.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_print_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_print_visitor.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_print_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_print_visitor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_reader.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_reader.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_rvalue_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_rvalue_visitor.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_rvalue_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_rvalue_visitor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_uniform.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_validate.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_variable_refcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_variable_refcount.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_variable_refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_variable_refcount.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/ir_visitor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_functions.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_interface_blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_interface_blocks.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_uniform_blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_uniform_blocks.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_uniforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_uniforms.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_varyings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_varyings.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_varyings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/link_varyings.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker_util.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/linker_util.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/list.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/loop_analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/loop_analysis.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/loop_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/loop_analysis.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_builtins.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_discard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_discard.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_discard_flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_discard_flow.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_distance.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_instructions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_instructions.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_int64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_int64.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_jumps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_jumps.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_mat_op_to_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_mat_op_to_vec.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_packing_builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_packing_builtins.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_precision.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_subroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_subroutine.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_vector_derefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/lower_vector_derefs.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/meson.build -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_add_neg_to_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_add_neg_to_sub.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_algebraic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_algebraic.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_dead_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_dead_code.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_dead_code_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_dead_code_local.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_dead_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_dead_functions.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_flip_matrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_flip_matrices.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_function_inlining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_function_inlining.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_if_simplification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_if_simplification.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_minmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_minmax.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_rebalance_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_rebalance_tree.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_tree_grafting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/opt_tree_grafting.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/program.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/propagate_invariance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/propagate_invariance.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/s_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/s_expression.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/s_expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/s_expression.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/standalone_scaffolding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/standalone_scaffolding.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/standalone_scaffolding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/standalone_scaffolding.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/string_to_uint_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/string_to_uint_map.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/string_to_uint_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl/string_to_uint_map.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl_types.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/glsl_types.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/ir_expression_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/ir_expression_operation.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/meson.build -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/README -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/meson.build -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_algebraic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_algebraic.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder_opcodes.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder_opcodes_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builder_opcodes_h.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builtin_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builtin_builder.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builtin_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_builtin_builder.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_clone.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_constant_expressions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_constant_expressions.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_constant_expressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_constant_expressions.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_constant_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_constant_expressions.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_control_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_control_flow.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_control_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_control_flow.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_control_flow_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_control_flow_private.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_conversion_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_conversion_builder.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_deref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_deref.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_deref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_deref.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_divergence_analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_divergence_analysis.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_dominance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_dominance.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_format_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_format_convert.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_from_ssa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_from_ssa.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gather_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gather_info.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gather_ssa_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gather_ssa_types.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gather_xfb_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gather_xfb_info.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_group_loads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_group_loads.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gs_count_vertices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_gs_count_vertices.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_inline_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_inline_functions.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_inline_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_inline_helpers.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_inline_uniforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_inline_uniforms.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_instr_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_instr_set.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_instr_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_instr_set.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_c.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_h.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_indices.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_indices_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_intrinsics_indices_h.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_linking_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_linking_helpers.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_liveness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_liveness.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_loop_analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_loop_analyze.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_loop_analyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_loop_analyze.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_alpha_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_alpha_test.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_alu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_alu.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_alu_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_alu_width.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_amul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_amul.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_atomics_to_ssbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_atomics_to_ssbo.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bit_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bit_size.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bitmap.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_blend.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_blend.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bool_to_bitsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bool_to_bitsize.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bool_to_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bool_to_float.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bool_to_int32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_bool_to_int32.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_cl_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_cl_images.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_clip.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_clip_disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_clip_disable.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_clip_halfz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_clip_halfz.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_discard_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_discard_if.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_double_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_double_ops.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_drawpixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_drawpixels.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fb_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fb_read.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_flatshade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_flatshade.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_flrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_flrp.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fp16_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fp16_conv.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fragcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fragcolor.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fragcoord_wtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_fragcoord_wtrans.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_frexp.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_goto_ifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_goto_ifs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_gs_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_gs_intrinsics.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_helper_writes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_helper_writes.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_idiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_idiv.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_image.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_indirect_derefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_indirect_derefs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_int64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_int64.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_int_to_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_int_to_float.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_interpolation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_interpolation.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_io.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_io_to_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_io_to_scalar.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_io_to_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_io_to_vector.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_locals_to_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_locals_to_regs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_mediump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_mediump.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_memcpy.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_memory_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_memory_model.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_multiview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_multiview.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_packing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_packing.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_patch_vertices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_patch_vertices.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_phis_to_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_phis_to_scalar.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_pntc_ytransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_pntc_ytransform.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_point_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_point_size.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_point_size_mov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_point_size_mov.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_point_smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_point_smooth.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_poly_line_smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_poly_line_smooth.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_printf.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_regs_to_ssa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_regs_to_ssa.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_returns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_returns.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_samplers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_samplers.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_scratch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_scratch.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_shader_calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_shader_calls.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_single_sampled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_single_sampled.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_ssbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_ssbo.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_subgroups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_subgroups.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_system_values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_system_values.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_task_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_task_shader.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_tex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_tex.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_tex_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_tex_shadow.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_texcoord_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_texcoord_replace.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_to_source_mods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_to_source_mods.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_two_sided_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_two_sided_color.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_ubo_vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_ubo_vec4.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_undef_to_zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_undef_to_zero.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_uniforms_to_ubo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_uniforms_to_ubo.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_var_copies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_var_copies.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_vars_to_ssa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_vars_to_ssa.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_vec3_to_vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_vec3_to_vec4.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_vec_to_movs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_vec_to_movs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_wpos_center.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_wpos_center.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_wpos_ytransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_wpos_ytransform.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_wrmasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_lower_wrmasks.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_metadata.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_mod_analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_mod_analysis.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes_c.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opcodes_h.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_access.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_algebraic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_algebraic.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_algebraic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_algebraic.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_barriers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_barriers.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_combine_stores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_combine_stores.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_comparison_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_comparison_pre.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_constant_folding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_constant_folding.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_copy_prop_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_copy_prop_vars.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_copy_propagate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_copy_propagate.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_cse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_cse.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_dce.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_dead_cf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_dead_cf.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_dead_write_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_dead_write_vars.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_find_array_copies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_find_array_copies.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_fragdepth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_fragdepth.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_gcm.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_idiv_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_idiv_const.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_if.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_intrinsics.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_large_constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_large_constants.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_loop_unroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_loop_unroll.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_memcpy.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_move.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_non_uniform_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_non_uniform_access.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_offsets.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_peephole_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_peephole_select.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_phi_precision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_phi_precision.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_preamble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_preamble.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_ray_queries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_ray_queries.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_remove_phis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_remove_phis.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_shrink_stores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_shrink_stores.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_shrink_vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_shrink_vectors.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_sink.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_trivial_continues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_trivial_continues.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_undef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_undef.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_uniform_atomics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_uniform_atomics.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_vectorize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_opt_vectorize.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_passthrough_gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_passthrough_gs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_passthrough_tcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_passthrough_tcs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_phi_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_phi_builder.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_phi_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_phi_builder.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_print.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_propagate_invariant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_propagate_invariant.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_range_analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_range_analysis.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_range_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_range_analysis.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_remove_dead_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_remove_dead_variables.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_repair_ssa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_repair_ssa.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_scale_fdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_scale_fdiv.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_schedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_schedule.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_schedule.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_search.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_search.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_search_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_search_helpers.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_serialize.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_serialize.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_split_var_copies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_split_var_copies.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_split_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_split_vars.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_sweep.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_to_lcssa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_to_lcssa.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_validate.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_vla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_vla.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_vulkan.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_worklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_worklist.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_worklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_worklist.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_xfb_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir/nir_xfb_info.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir_gl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir_gl_types.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir_types.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/nir_types.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/shader_enums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/shader_enums.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/shader_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/shader_enums.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/shader_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/compiler/shader_info.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/auxiliary/util/u_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/auxiliary/util/u_half.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/frontend/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/frontend/api.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_compiler.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_context.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_defines.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_screen.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_shader_tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_shader_tokens.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_state.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_video_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/gallium/include/pipe/p_video_enums.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/git_sha1.h: -------------------------------------------------------------------------------- 1 | #define MESA_GIT_SHA1 " (git-0f4715a71a)" -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mapi/glapi/glapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mapi/glapi/glapi.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/compiler.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/config.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/consts_exts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/consts_exts.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/context.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/dd.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/debug_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/debug_output.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/debug_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/debug_output.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/dlist.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/draw.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/enums.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/errors.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/errors.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/extensions.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/extensions_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/extensions_table.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/extensions_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/extensions_table.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/formats.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/glconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/glconfig.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/glheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/glheader.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/hash.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/imports.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/imports.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/macros.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/menums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/menums.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/mtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/mtypes.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/shader_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/shader_types.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/shaderobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/shaderobj.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/uniforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/uniforms.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/main/version.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/math/m_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/math/m_matrix.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/ir_to_mesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/ir_to_mesa.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/link_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/link_program.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_instruction.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_parameter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_parameter.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_parameter.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_statevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/prog_statevars.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/program.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/symbol_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/symbol_table.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/symbol_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/program/symbol_table.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/vbo/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/vbo/vbo.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/vbo/vbo_attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/mesa/vbo/vbo_attrib.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/00-mesa-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/00-mesa-defaults.conf -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/00-radv-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/00-radv-defaults.conf -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/anon_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/anon_file.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/anon_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/anon_file.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/bigmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/bigmath.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitpack_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitpack_helpers.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitscan.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitscan.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/bitset.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/blob.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/blob.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/build_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/build_id.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/build_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/build_id.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/cnd_monotonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/cnd_monotonic.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/compat_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/compat_layer.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/compat_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/compat_layer.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/compiler.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/compress.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/compress.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/crc32.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/crc32.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/dag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/dag.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/dag.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect_arch.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect_cc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/detect_os.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache_os.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/disk_cache_os.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/double.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/double.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/driconf_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/driconf_static.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/enum_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/enum_operators.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/fast_idiv_by_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/fast_idiv_by_const.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/fast_idiv_by_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/fast_idiv_by_const.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/fast_urem_by_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/fast_urem_by_const.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/format_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/format_utils.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/meson.build -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/texcompress_bptc_tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/texcompress_bptc_tmp.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/texcompress_etc_tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/texcompress_etc_tmp.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/texcompress_s3tc_tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/texcompress_s3tc_tmp.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format.csv -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_bptc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_bptc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_bptc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_bptc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_etc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_etc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_fxt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_fxt1.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_fxt1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_fxt1.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_latc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_latc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_latc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_latc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_other.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_other.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_pack.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_pack.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_parse.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_rgtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_rgtc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_rgtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_rgtc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_s3tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_s3tc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_s3tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_s3tc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_table.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_table.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_unpack_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_unpack_neon.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_yuv.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_yuv.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_zs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_zs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_zs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_format_zs.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format/u_formats.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_r11g11b10f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_r11g11b10f.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_rgb9e5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_rgb9e5.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_srgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_srgb.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_srgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_srgb.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_srgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/format_srgb.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/fossilize_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/fossilize_db.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/fossilize_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/fossilize_db.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/futex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/futex.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/futex.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/glheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/glheader.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/glsl2spirv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/glsl2spirv.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/half_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/half_float.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/half_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/half_float.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/hash_table.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/hash_table.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/libdrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/libdrm.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/libsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/libsync.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/list.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/log.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/log.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/macros.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa-sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa-sha1.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa-sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa-sha1.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db_multipart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db_multipart.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db_multipart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/mesa_cache_db_multipart.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/meson.build -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_file.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_file.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_aligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_aligned.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_debug.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_fd.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_fd.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_stdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_memory_stdc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_misc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_misc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_mman.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_socket.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_socket.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_time.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/os_time.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/ptralloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/ptralloc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/ralloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/ralloc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/ralloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/ralloc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/rand_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/rand_xor.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/rand_xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/rand_xor.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/rb_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/rb_tree.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/rb_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/rb_tree.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/reallocarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/reallocarray.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/register_allocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/register_allocate.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/register_allocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/register_allocate.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/register_allocate_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/register_allocate_internal.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/rgtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/rgtc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/rgtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/rgtc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/rounding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/rounding.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/set.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/set.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/sha1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/sha1/README -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/sha1/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/sha1/sha1.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/sha1/sha1.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/simple_mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/simple_mtx.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/simple_mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/simple_mtx.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/slab.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/slab.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/softfloat.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/softfloat.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/sparse_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/sparse_array.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/sparse_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/sparse_array.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/streaming-load-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/streaming-load-memcpy.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/streaming-load-memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/streaming-load-memcpy.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/string_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/string_buffer.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/string_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/string_buffer.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/strndup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/strndup.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/strtod.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/strtod.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/texcompress_rgtc_tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/texcompress_rgtc_tmp.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_atomic.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_atomic.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_call_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_call_once.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_call_once.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_cpu_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_cpu_detect.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_cpu_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_cpu_detect.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_describe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_describe.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_describe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_describe.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_memory.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_refcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_refcnt.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_refcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_refcnt.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_stack.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_stack.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_stack_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_stack_android.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_symbol.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_debug_symbol.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_dl.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_dl.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_drm.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_dynarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_dynarray.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_endian.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_hash_table.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_hash_table.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_idalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_idalloc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_idalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_idalloc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_math.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_math.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_memory.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_memset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_memset.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_mm.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_mm.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_pointer.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_printf.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_printf.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_process.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_process.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_qsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_qsort.cpp -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_qsort.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_queue.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_queue.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_string.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_thread.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_thread.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_vector.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_vector.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_worklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_worklist.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_worklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/u_worklist.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/vl_rbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/vl_rbsp.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/vl_vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/vl_vlc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/vma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/vma.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/vma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/vma.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/xxd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/xxd.py -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/glsl_optimizer/src/util/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/glsl_optimizer/src/util/xxhash.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/libraryinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/libraryinternal.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/license_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/license_notice.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/main.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/main.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/multidraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/multidraw.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/of_buffer_copier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/of_buffer_copier.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/proc.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/proc.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/query.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/shader_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/shader_wrapper.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/string_utils.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/string_utils.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/stubs.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/swizzle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/swizzle.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/swizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/swizzle.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/texture_tracker.c.unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/texture_tracker.c.unused -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/unordered_map/int_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/unordered_map/int_hash.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/unordered_map/int_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/unordered_map/int_hash.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/unordered_map/unordered_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/unordered_map/unordered_map.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/unordered_map/unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/unordered_map/unordered_map.h -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/version.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/version.script -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/vertexattrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/vertexattrib.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/vgpu_shaderconv/shaderconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/vgpu_shaderconv/shaderconv.c -------------------------------------------------------------------------------- /ltw/src/main/tinywrapper/vgpu_shaderconv/shaderconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/ltw/src/main/tinywrapper/vgpu_shaderconv/shaderconv.h -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/settings.gradle -------------------------------------------------------------------------------- /wrapper/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/wrapper/build.gradle -------------------------------------------------------------------------------- /wrapper/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/wrapper/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wrapper/src/main/java/git/artdeell/gl4eswrapper/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MojoLauncher/LTW/HEAD/wrapper/src/main/java/git/artdeell/gl4eswrapper/MainActivity.java --------------------------------------------------------------------------------