Huw Pascoe
903906da3b
Optimized Float<M,E> multiplication
Before:
ucomiss xmm1, xmm1
jp .L9
pxor xmm2, xmm2
mov edx, 1
ucomiss xmm0, xmm2
setp al
cmovne eax, edx
test al, al
jne .L9
.L3:
movaps xmm0, xmm2
ret
.L9:
ucomiss xmm0, xmm0
jp .L10
pxor xmm2, xmm2
mov edx, 1
ucomiss xmm1, xmm2
setp al
cmovne eax, edx
test al, al
je .L3
After:
movaps xmm2, xmm1
mulss xmm2, xmm0
ucomiss xmm2, xmm2
jnp .L3
ucomiss xmm1, xmm0
jnp .L11
.L3:
movaps xmm0, xmm2
ret
.L11:
pxor xmm2, xmm2
jmp .L3
8 years ago
MerryMage
67a70bd9e1
ARM_Interface: Implement PageTableChanged
8 years ago
MerryMage
4e5eb2044a
memory: Remove GetCurrentPageTablePointers
8 years ago
MerryMage
c02bbb7030
memory: Add GetCurrentPageTable/SetCurrentPageTable
Don't expose Memory::current_page_table as a global.
8 years ago
Huw Pascoe
876aa82c29
Optimized Morton
8 years ago
wwylele
7117fcc024
citra-qt: fix some untranslated strings
8 years ago
Subv
7096f01c14
HLE/APT: Always return an error from PrepareToStartNewestHomeMenu so that the Home Menu doesn't try to reboot the system.
As per 3dbrew:
"During Home Menu start-up it uses APT:PrepareToStartNewestHomeMenu. If that doesn't return an error(normally NS returns 0xC8A0CFFC for that), Home Menu starts a hardware reboot with APT:StartNewestHomeMenu etc. "
8 years ago
Subv
b57d58c0dc
HLE/APT: Prepare the APT Wakeup parameter when the game calls Initialize
We need to know what is being run so we can set the APT parameter destination AppId correctly.
Delaying the preparation of the parameter until we know which AppId is running lets us support booting both the Home Menu and normal game Applications.
8 years ago
Subv
0b33e36292
HLE/SRV: Implemented RegisterService.
Now system modules can do more than just crash immediately on startup.
8 years ago
James Rowe
19d41dcc6e
Remove pipeline.gpu_mode and fix minor issues
8 years ago
B3n30
28c726f205
WebService: Verify username and token ( #2930 )
* WebService: Verify username and token; Log errors in PostJson
* Fixup: added docstrings to the functions
* Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits
* fixup: fmt warning
8 years ago
Huw Pascoe
a234e4c200
Improved performance of FromAttributeBuffer
Ternary operator is optimized by the compiler
whereas std::min() is meant to return a value.
I've noticed a 5%-10% emulation speed increase.
8 years ago
Huw Pascoe
6a110ac5f5
Fixed framebuffer warning
8 years ago
Subv
3d86e3afc4
Services/NS: Port ns:s to the new service framework.
8 years ago
Subv
7a3ab7c63d
CPU/Dynarmic: Disable the fast page-table access in dynarmic until it supports switching page tables at runtime.
9 years ago
Subv
3bde97ea05
Tests/VFP: Use a standalone pagetable for the TestEnvironment memory operations.
This fixes building the tests
9 years ago
Subv
f18a176b60
Kernel/Memory: Make IsValidPhysicalAddress not go through the current process' virtual memory mapping.
9 years ago
Subv
b178089251
Kernel/Threads: Don't clear the CPU instruction cache when performing a context switch from an idle thread into a thread in the same process.
We were unnecessarily clearing the cache when going from Process A -> Idle -> Process A, this caused extreme performance regressions.
9 years ago
Subv
214150f00c
Kernel/Memory: Changed GetPhysicalPointer so that it doesn't go through the current process' page table to obtain a pointer.
9 years ago
James Rowe
ad0b57f407
GPU: Add draw for immediate and batch modes
PR #1461 introduced a regression where some games would change configuration
even while in the poorly named "drawing" mode, which broke the heuristic
citra was using to determine when to draw the batch. This change adds
back in a draw call for batching, and also adds in a draw call in
immediate mode each time it adds a triangle.
8 years ago
Subv
c34ec5e77c
Kernel/Memory: Switch the current page table when a new process is scheduled.
9 years ago
Subv
6d2734a074
Kernel/Memory: Give each Process its own page table.
The loader is in charge of setting the newly created process's page table as the main one during the loading process.
9 years ago
mailwl
11f2eff17d
Remove _flag in var names
8 years ago
mailwl
589babbf74
Mii Selector Applet: update Mii structures
9 years ago
James Rowe
79f177c6d2
Fix icon for citra qt
8 years ago
wwylele
59a9aaf388
APT: load different shared font depending on the region
9 years ago
wwylele
12fbc8c8df
pica/lighting: only apply Fresnel factor for the last light
9 years ago
DaMan
40505bc4fc
Add manifest
8 years ago
wwylele
e2c41a5891
video_core: report telemetry for gas mode
8 years ago
danzel
8266064796
Use recursive_mutex instead of mutex to fix #2902
8 years ago
MerryMage
933508e2a2
interpolate: Interpolate on a frame-by-frame basis
9 years ago
Subv
f64cd87604
Services/UDS: Remove an old duplicated declaration of WifiPacket.
9 years ago
Subv
d088dbfbe1
Services/UDS: Handle the connection sequence packets.
There is currently no stage tracking, a client is considered "Connected" when it receives the EAPoL Logoff packet from the server, this is not yet implemented.
9 years ago
Subv
2e9f544ecc
Services/UDS: Store the received beacon frames until RecvBeaconBroadcastData is called, up to 15 beacons at the same time, removing any older beacon frames when the limit is exceeded.
9 years ago
Subv
54411bef4e
Services/UDS: Add functions to generate 802.11 auth and assoc response frames.
9 years ago
bunnei
7698567fc9
web_backend: Fix CPR bug where Winsock is not properly initializing.
9 years ago
Subv
da88f3b8f0
Warnings: Fixed a few missing-return warnings in video_core.
9 years ago
bunnei
c8562b21d9
web_backend: Fix asynchronous JSON post by spawning new thread.
9 years ago
bunnei
04bd0c957e
web_services: Refactor to remove dependency on Core.
9 years ago
bunnei
9f0da33c33
qt: Add an option to view/regenerate telemetry ID.
9 years ago
bunnei
5d7b364a21
default_ini: Use correct telemetry endpoint URL.
9 years ago
bunnei
2e37201c63
# This is a combination of 2 commits.
# This is the 1st commit message:
qt: Add web configuration tab.
# The commit message #2 will be skipped:
# fixup! qt: Add web configuration tab.
9 years ago
bunnei
fb17e866aa
qt: Add web configuration tab.
9 years ago
bunnei
41328afb58
web_backend: User config for username and token, support anonymous post.
9 years ago
bunnei
40f417125b
telemetry: Log frontend type.
9 years ago
bunnei
c781aea947
settings: Add enable_telemetry, citra_username, and citra_token.
9 years ago
bunnei
d6a819c7cb
telemetry_session: Log telemetry ID.
9 years ago
bunnei
59ad933022
citra_qt: Show one-time callout messages to user.
9 years ago
ThaMighty90
3cdf854e44
SidebySide Layout ( #2859 )
* added a SidebySide Layout
* Reworked, so both screen have the same height and cleaned up screen translates.
* added the option in the UI, hope this is the right way to do it. formated framebuffer_layout.cpp
* delete the x64 files
* deleted ui_configure_graphics.h
* added Option for the Layout in the xml
* got rid of SIDE_BY_SIDE_ASPECT_RATIO because it was useless. pulled translate into variables
* changed shift variables to u32 and moved them in their respective branch. remove notr="true" for the Screen layout drop down
* reworked intends :). changed function description for SideFrameLayout
* some description reworking
9 years ago
wwylele
417cb45e3f
SwRasterizer/Clipper: flip the sign convention to match PICA and OpenGL
9 years ago