bunnei
7122c46937
Merge pull request #81 from yuriks/downgrade-shader
...
Downgrade GLSL version to 1.50 (compatible with GL 3.2)
11 years ago
Yuri Kunde Schlesner
9d172ab550
Downgrade GLSL version to 1.50 (compatible with GL 3.2)
11 years ago
bunnei
1a7bbe2569
Merge pull request #79 from bunnei/framebuffer-render-fixes
...
VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size.
11 years ago
bunnei
20d169e4a1
VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size.
11 years ago
bunnei
fef62d0e54
Merge pull request #74 from kevinhartman/master
...
Initial rewrite of opengl renderer.
11 years ago
Kevin Hartman
cbfd6b6e52
Rewrite of OpenGL renderer, including OS X support
...
Screen contents are now displayed using textured quads. This can be updated to expose an FBO once an OpenGL backend for when Pica rendering is being worked on. That FBO's texture can then be applied to the quads.
Previously, FBO blitting was used in order to display screen contents, which did not work on OS X. The new textured quad approach is less of a compatibility risk.
11 years ago
bunnei
aa7472057a
Update README.md to correct OS X typo
11 years ago
bunnei
62b621788b
Update README.md
11 years ago
bunnei
97fd8fc38d
Merge pull request #50 from neobrain/pica
...
Further work on Pica emulation
11 years ago
Tony Wasserka
a79644c9ba
Pica/Rasterizer: Clarify a TODO.
11 years ago
Tony Wasserka
697b50c3ff
Pica/VertexShader: Fix a bug in the call stack handling.
11 years ago
Tony Wasserka
b5b3aeb576
Math: Warning fixes.
11 years ago
Tony Wasserka
941762a573
GPU: Fix a compiler warning about redundant semicolons.
11 years ago
Tony Wasserka
2f1c129f64
Pica: Consolidate the primitive assembly code in PrimitiveAssembly and GeometryDumper.
11 years ago
Tony Wasserka
9679d231df
Pica/Rasterizer: Add texturing support.
11 years ago
Tony Wasserka
34fa0b6d9c
Pica/DebugUtils: Add convenient tev setup printer.
11 years ago
Tony Wasserka
27cab6477e
Pica/Rasterizer: Add initial implementation of texture combiners.
11 years ago
Tony Wasserka
c4691b784b
Pica: Add support for dumping textures.
11 years ago
Tony Wasserka
162d641a30
Pica/Math: Improved the design of the Vec2/Vec3/Vec4 classes and simplified rasterizer code accordingly.
...
- Swizzlers now return const objects so that things like "first_vec4.xyz() = some_vec3" now will fail to compile (ideally we should support some vector holding references to make this actually work).
- The methods "InsertBeforeX/Y/Z" and "Append" have been replaced by more versions of MakeVec, which now also supports building new vectors from vectors.
- Vector library now follows C++ type promotion rules (hence, the result of Vec2<u8> with another Vec2<u8> is now a Vec2<int>).
11 years ago
Tony Wasserka
62c36a4ef0
Pica/VertexShader: Fix a bug in the bitfield definitions and add the "negate" field for swizzlers.
11 years ago
Tony Wasserka
26ade98411
Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated.
11 years ago
Tony Wasserka
0465adf206
Pica/CommandProcessor: Implement parameter masking.
11 years ago
Tony Wasserka
f37e39deb9
Pica: Add debug utilities for dumping shaders.
11 years ago
Tony Wasserka
6ea003c7b5
Pica: Add debug utility functions for dumping geometry data.
11 years ago
Tony Wasserka
14b24a75b3
GSP: Update framebuffer information when necessary.
11 years ago
Tony Wasserka
590c206ac8
GSP: Implement SetBufferSwap.
11 years ago
Tony Wasserka
e832bbe554
GSP: Add a helper function for convenience.
11 years ago
bunnei
613b0a8df8
Merge pull request #75 from xsacha/qt5
...
Fix threading for Qt5.
11 years ago
Sacha
1b1205cf73
Pass format to the QGLWidget and use atomic instead of mutex.
11 years ago
Sacha
b044510fa9
Fix EmuThread loop by ensuring it exits properly.
...
Note: There is a pre-existing issue with booting a new game in that it keeps the old EmuThread.
The GL code now supports this but the Core still doesn't.
11 years ago
Sacha
a3a70e56ac
Fix the threading for GL Context in Qt5.
...
Connect the emu_thread start/finish to a moveContext slot.
11 years ago
bunnei
fab2f28ea5
Merge pull request #73 from yuriks/remove-docs
...
Remove documentation for external modules.
11 years ago
Yuri Kunde Schlesner
04d53629db
Remove documentation for external modules.
...
We don't need these and they clutter up the repository.
11 years ago
bunnei
0ffc966e42
Merge pull request #68 from archshift/readfile
...
Added FS functions to Archive and Archive_RomFS
11 years ago
archshift
4c4a01bf41
Added FS functions to Archive and Archive_RomFS
11 years ago
bunnei
c3c66ad34d
Merge pull request #46 from archshift/citrah
...
Removed unused citra.h
11 years ago
bunnei
59d512484a
Merge pull request #58 from lioncash/clamp
...
Common: Add a clamp function to math_utils.h
11 years ago
bunnei
c9add2e4b2
Merge pull request #64 from linkmauve/master
...
ARM: Remove a forgotten const in vfp.
11 years ago
Emmanuel Gil Peyrot
ef27770a53
ARM: Remove a forgotten const in vfp.
11 years ago
bunnei
2386764756
Merge pull request #62 from archshift/revert-49-redundantloop
...
Revert "Removed redundant loop in EmuThread::run()"
11 years ago
archshift
d93dc81953
Revert "Removed redundant loop in EmuThread::run()"
11 years ago
archshift
80c4d7bf48
Removed unused citra.h
11 years ago
bunnei
bc64261d29
Merge pull request #60 from xsacha/qt5
...
Use Qt5 by default for citra-qt project.
11 years ago
bunnei
0db986d92a
Merge pull request #61 from lioncash/kernel-stuff
...
Core: Use std::array for managing kernel object space
11 years ago
bunnei
39fbb0d508
Merge pull request #59 from lioncash/fwddecl
...
Common: Get rid of an unnecessary forward declaration in symbols.h
11 years ago
Sacha
90f23020f5
Add Qt5 option. Use Qt5 by default.
11 years ago
Lioncash
2f571a0d9d
Common: Add a clamp function to math_utils.h
11 years ago
Lioncash
ab4648d3ca
Core: Use std::array for managing kernel object space
...
These avoid relying on memset for clearing the arrays.
11 years ago
bunnei
e9c5c563a5
Merge pull request #55 from lioncash/string
...
Core: Alter the kernel string functions to use std::string instead of const char*.
11 years ago
bunnei
e179dceecf
Merge pull request #45 from bunnei/master
...
SVC: Added support for svc_GetSystemTick.
11 years ago