wwylele
e390c20d4b
Merge pull request #2131 from ricardotk/typos
Fix typos
9 years ago
Ricardo de Almeida Gonzaga
07fdcf150d
Fix typos
9 years ago
wwylele
9ef5b9604b
NWM: stub Initialize with an error
9 years ago
bunnei
0486aa3e8b
Merge pull request #2024 from JamePeng/update-boss-code
Update the stub code of BOSS
9 years ago
bunnei
d3aba2efa8
Merge pull request #2082 from yuriks/shader-interp-crash
Fix/mask crash in shader debugger in Mii Maker
9 years ago
JamePeng
876bd2daa8
Rework the code of err:f service
9 years ago
bunnei
79c5d3c2fb
Merge pull request #1652 from wwylele/kernal-tool
Debugger: implement wait tree widget
9 years ago
bunnei
f28267c100
Merge pull request #2106 from wwylele/delete-recursive
FS: implement DeleteDirectoryRecursively
9 years ago
bunnei
2c18a725be
Merge pull request #2103 from wwylele/gpu-reg-cleanup
GPU: DisplayTransfer & MemoryFill cleanup and param check
9 years ago
JamePeng
97d9804d97
Update the stub code of BOSS
9 years ago
wwylele
a1a4d92f19
fs: clean up log format
9 years ago
wwylele
b2fa64ec75
fs: implement DeleteDirectoryRecursively
9 years ago
Yuri Kunde Schlesner
d4bcba2ca1
VideoCore: Shader interpreter cleanups
9 years ago
Yuri Kunde Schlesner
1de9e185af
Common: Remove dangerous Vec[234] array constructors
They're not currently used, and it's easy to accidentally pass a single
pointer argument to them, causing an out-of-bounds read.
9 years ago
Yuri Kunde Schlesner
7872ec7cc3
VideoCore: Fix out-of-bounds read in ShaderSetup::ProduceDebugInfo
As far as I can tell, memset was replaced by a fill without correcting
the parameter type, causing an out-of-bounds array read in the Vec4
constructor.
9 years ago
Yuri Kunde Schlesner
0dbc73270c
Merge pull request #2083 from yuriks/opengl-scissor-cached-rect
OpenGL: Take cached viewport sub-rect into account for scissor
9 years ago
Yuri Kunde Schlesner
e72584084e
OpenGL: Take cached viewport sub-rect into account for scissor
Fixes #1938
9 years ago
wwylele
ef9319842c
gpu: DisplayTransfer: a less amazing algorithm for flip
the old implementation modifies the loop variable in the loop. Though it actually works, it is really confusing. Makes it morereadable now.
9 years ago
wwylele
2c0cc232fa
gpu: keep the old signal strategy for null pointer
previous commits changes the behaviour of interrupt when meeting invalid params. Regresses to the same behaviour as before
needs more hwtest
9 years ago
wwylele
ff4fe1df8f
gpu: add validity check for TextureCopy, DisplayTransfer and FillMemory
prevent further operation with invalid values which may cause assertion failure or divided by zero.
needs more hwtest
9 years ago
wwylele
7dcbdc4c43
memory: fix IsValidVirtualAddress for RasterizerCachedMemory
RasterizerCachedMemory doesn't has pointer but should be considered as valid
9 years ago
wwylele
287ec158ed
gpu: move MemoryFill, TextureCopy and DisplayTransfer into functions
The old code indented too much to read. Split into functions and do general cleanup.
9 years ago
wwylele
4d867489a4
rasterizer: separate TextureCopy from DisplayTransfer
9 years ago
bunnei
82b43e9812
Merge pull request #2100 from wwylele/fix-load-assert
Qt: shutdown system if error on loading ROM
9 years ago
wwylele
e46c564f76
qt: shutdown system if error
9 years ago
wwylele
1dedb87851
move ResetType to kernel.h
10 years ago
wwylele
d1d4b24f76
name objects
10 years ago
wwylele
8b25c12ce8
implement wait tree widget
10 years ago
wwylele
ce00c20861
Merge pull request #2099 from citra-emu/fix-clang-format
Fix clang-format lint
9 years ago
wwylele
1c4a13df97
travis: fix clang-format lint
9 years ago
Yuri Kunde Schlesner
7d2ec63a20
Merge pull request #2086 from linkmauve/clang-format
Add clang-format as part of our {commit,travis}-time checks
9 years ago
Yuri Kunde Schlesner
d205bbc7d5
README: Specify master branch for Travis CI badge
9 years ago
Yuri Kunde Schlesner
739c1d8cf9
Fix Travis clang-format check
9 years ago
Yuri Kunde Schlesner
32bddfa1f5
Remove special rules for Windows.h and library includes
9 years ago
Yuri Kunde Schlesner
fa5d9d8266
Use negative priorities to avoid special-casing the self-include
9 years ago
Yuri Kunde Schlesner
960d39f7da
Merge pull request #2097 from citra-emu/fix-travis
Travis: Fix OS X build
9 years ago
Yuri Kunde Schlesner
bc28a77592
Travis: Fix OS X build
Probably due to additional Travis caching, cmake is now already
installed when the script runs. This causes the unlink to remove the
symlink to the executable, which is then not re-added by the install
(since it's already installed).
9 years ago
Emmanuel Gil Peyrot
1138ec0d49
Remove empty newlines in #include blocks.
This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation.
9 years ago
Yuri Kunde Schlesner
1e4a5da9f4
Manually tweak source formatting and then re-run clang-format
9 years ago
Yuri Kunde Schlesner
5288648a23
Tweak formatting settings
9 years ago
Emmanuel Gil Peyrot
628ed4376a
Sources: Run clang-format on everything.
9 years ago
Emmanuel Gil Peyrot
4298e7ef01
Travis: Import Dolphin’s clang-format hook.
9 years ago
Emmanuel Gil Peyrot
da45e2bd71
Git hook: Remove trailing semicolons wrecking vim’s syntax highlighting.
9 years ago
Emmanuel Gil Peyrot
c57d6ccac3
Git hook: Import Dolphin’s clang-format hook.
9 years ago
Emmanuel Gil Peyrot
b26517b08c
Dyncom: Disable clang-format on the decoding table.
9 years ago
Emmanuel Gil Peyrot
c2b031b928
Sources: Add a .clang-format configuration file.
9 years ago
Yuri Kunde Schlesner
913f6e4572
Merge pull request #2080 from yuriks/shader-interp-crash
VideoCore: Fix dangling lambda context in shader interpreter
9 years ago
Yuri Kunde Schlesner
300e68c5df
VideoCore: Fix dangling lambda context in shader interpreter
The static meant that after the first execution, these lambda context
would be pointing to a random location on the stack. Fixes a random
crash when using the interpreter.
9 years ago
Yuri Kunde Schlesner
ba8dbb498b
Merge pull request #2042 from bunnei/dynarmic
Interface ARM CPU JIT (Dynarmic)
9 years ago
bunnei
45bc24774f
arm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg.
9 years ago