archshift
03012b4476
Update appveyor.yml to use VS2015 CMake generator
10 years ago
bunnei
8c9648ef49
Merge pull request #1305 from lioncash/override
swrasterizer: Add missing override specifier
10 years ago
Lioncash
d70ea5b6aa
swrasterizer: Add missing override specifier
10 years ago
bunnei
46e5b62d14
Merge pull request #1300 from Subv/arbitrateaddress
SVC: Fixed ArbitrateAddress to behave as it does on hardware.
10 years ago
Mathew Maidment
9a6b909cfd
Merge pull request #1301 from lioncash/mrc-apsr
dyncom: Handle modifying the APSR via an MRC instruction
10 years ago
Lioncash
39609e9d6e
dyncom: Handle modifying the APSR via an MRC instruction
10 years ago
Subv
a2c2b28b54
SVC: Fixed ArbitrateAddress to behave as it does on hardware.
This was verified with hwtests that i plan to upload later on.
10 years ago
bunnei
556bd5d159
Merge pull request #1296 from lioncash/warn
svc: Remove superfluous printf argument
10 years ago
bunnei
63530270da
Merge pull request #1290 from LFsWang/master
Add a return value in ForeachDirectoryEntry
10 years ago
Lioncash
4ab2d11182
svc: Remove superfluous printf argument
10 years ago
Mathew Maidment
9fe5afd035
Merge pull request #1287 from lioncash/memory
dyncom: Minor changes
10 years ago
LFsWang
d8d9d5d916
Add missing return values in ForeachDirectoryEntry
ForeachDirectoryEntry is changed by #1256 ,but return value at last line
was missing.
10 years ago
Lioncash
0908f894ca
dyncom: Remove PC dispatch from several instructions
These instructions aren't capable of using the PC as a destination
10 years ago
Yuri Kunde Schlesner
af6acb3432
Merge pull request #1289 from yuriks/reset-rasterizer
VideoCore: Sync state after changing rasterizers
10 years ago
Yuri Kunde Schlesner
b7109a1113
VideoCore: Sync state after changing rasterizers
This fixes various bugs that appear in the HW rasterizer after switching
between it and the SW one during emulation.
10 years ago
Lioncash
2f0474efa5
dyncom: Handle unprivileged load/store variants correctly
LDRT/LDRBT/STRBT/STRT should simulate the load or store
as if the host CPU is in user mode.
STRT is also allowed to use the PC as an operand
10 years ago
Yuri Kunde Schlesner
81fe236873
Merge pull request #1281 from lioncash/compile
svc: Fix compilation with LOG_TRACE enabled
10 years ago
Lioncash
00ca148685
svc: Fix compilation with LOG_TRACE enabled
10 years ago
Yuri Kunde Schlesner
10a89e10ca
Merge pull request #1267 from yuriks/flipped-framebuffer
OpenGL: Flip framebuffers during transfer rather than when rendering
10 years ago
bunnei
0545d2f2f3
Merge pull request #1269 from Subv/triangle_fan
GPU/PrimitiveAssembler: Fixed drawing triangle fans.
10 years ago
Yuri Kunde Schlesner
e73547de5b
Merge pull request #1272 from yuriks/merge-rasterizer
VideoCore: Unify interface to OpenGL and SW rasterizers
10 years ago
Yuri Kunde Schlesner
102d39fe20
VideoCore: Unify interface to OpenGL and SW rasterizers
This removes explicit checks sprinkled all over the codebase to instead
just have the SW rasterizer expose an implementation with no-ops for
most operations.
10 years ago
bunnei
10d563fe38
Merge pull request #1271 from lioncash/dyncom-misc
dyncom: Miscellaneous minor changes
10 years ago
Yuri Kunde Schlesner
192829165a
VideoCore: Rename HWRasterizer methods to be less confusing
10 years ago
Yuri Kunde Schlesner
c2526d440e
OpenGL: Rename cache functions to better match what they actually do
10 years ago
Lioncash
8813673601
dyncom: Remove static keyword from header functions
10 years ago
Lioncash
0f083bdf0f
arm_interface: Make GetNumInstructions const
10 years ago
Lioncash
dd441a3dd6
arm_interface: directly initialize class members
10 years ago
Lioncash
93cd3dccc5
dyncom: const correctness changes
10 years ago
Subv
c94a1a0375
GPU/PrimitiveAssembler: Fixed drawing triangle fans.
It was skipping the second vertex assignment and using uninitialized garbage when assembling the corresponding triangle.
10 years ago
Yuri Kunde Schlesner
30c70c905f
OpenGL: Flip framebuffers during transfer rather than when rendering
10 years ago
Yuri Kunde Schlesner
8e478d8b99
OpenGL: Add support for glFrontFace in the state tracker
10 years ago
bunnei
3a96788f4f
Merge pull request #1252 from Subv/cam
Services/Cam: Added new log type and camera enums from 3dbrew.
10 years ago
bunnei
03867dce7f
Merge pull request #1261 from yuriks/tev-buffer-delay
PICA: Properly emulate 1-stage delay in the combiner buffer
10 years ago
Yuri Kunde Schlesner
7b9807c835
PICA: Properly emulate 1-stage delay in the combiner buffer
This was discovered and verified by @fincs . The tev combiner buffer
actually lags behind by one stage, meaning stage 1 reads the initial
color, stage 2 reads stage 0's output, and so on.
Fixes character portraits in Fire Emblem: Awakening and world textures
in Zelda: ALBW. Closes #1140 .
10 years ago
Yuri Kunde Schlesner
58f19e689d
Merge pull request #1257 from yuriks/svcGetSystemInfo
Kernel: Implement svcGetSystemInfo
10 years ago
Yuri Kunde Schlesner
5bed732b03
Kernel: Implement svcGetSystemInfo
This makes smealum/ctrulib@b96dd51d3349961189d4ab1bc2a5c45deff21c09 work
with Citra.
10 years ago
Mathew Maidment
5aca5d4993
Merge pull request #1259 from lioncash/zero
armstate: Zero out the registers on creation
10 years ago
Lioncash
af06eaf78d
armstate: Zero out the registers on creation
std::array isn't always guaranteed to explicitly zero out it's contents
without an initializer list.
10 years ago
Subv
a84d5aa51e
Core/ARM11: Correct the size of the VFP register array in the ThreadContext structure.
The VFP registers are 64 bits each, and there are 32 of them.
10 years ago
bunnei
ae854d124f
Merge pull request #1225 from lioncash/clean
csnd_snd: Get rid of type punning
10 years ago
bunnei
548374be48
Merge pull request #1256 from archshift/refactor-scandir
Refactor ScanDirectoryTreeAndCallback to separate errors and retvals
10 years ago
archshift
6e66a1244e
Refactor ScanDirectoryTreeAndCallback to separate errors and retvals
ScanDirectoryTreeAndCallback, before this change, coupled error/return
codes and actual return values (number of entries found). This caused
confusion and difficulty interpreting the precise way the function
worked.
Supersedes, and closes #1255 .
10 years ago
bunnei
31fd71db94
Merge pull request #1254 from bunnei/fix-gl-uniforms
renderer_opengl: Fix uniform issues with #1253
10 years ago
bunnei
4cbe626fc7
renderer_opengl: Fix uniform issues introduced with kemenaran/avoid-explicit-uniform-location.
10 years ago
bunnei
6f6b1aea3e
Merge pull request #1253 from kemenaran/avoid-explicit-uniform-location
Use regular uniform location
10 years ago
Pierre de La Morinerie
1c196456f0
Use regular uniform location
The support for GL_ARB_explicit_uniform_location is not that good
(53% according to http://feedback.wildfiregames.com/report/opengl/feature/GL_ARB_explicit_uniform_location ).
This fix the shader compilation on Intel HD 4000 (#1222 ).
10 years ago
bunnei
56f3db72cb
Merge pull request #1248 from polaris-/add-ssl-stubs
Add stub functions for Initialize and GenerateRandomData in ssl:C
10 years ago
Subv
092d5b04ec
Services/Cam: Added new log type and camera enums from 3dbrew.
Followup to #1102
Original author @mailwl
10 years ago
polaris-
18990ff322
Add stub functions for Initialize and GenerateRandomData in ssl:C
10 years ago