summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-10Updated CodecCtl with more service names.Hexagon12
2018-04-10Updated audren with more service names.Hexagon12
2018-04-10Updated audrec with more service names.Hexagon12
2018-04-10Updated audout with more service names.Hexagon12
2018-04-10Updated audin with more service names.Hexagon12
2018-04-10Updated AOC with more service names.Hexagon12
2018-04-10Updated AppletOE with more service names.Hexagon12
2018-04-10Updated AppletAE with more service names.Hexagon12
2018-04-10Updated AM with more service names.Hexagon12
2018-04-07Merge pull request #314 from jroweboy/tegra-progress-3bbunnei
GPU: Bind uploaded textures when drawing (Rebased)
2018-04-07Merge pull request #315 from jroweboy/spelling-fixbunnei
Fix spelling of Initialize
2018-04-07Merge pull request #316 from jroweboy/dontcrashbunnei
Prevent crash from uninitialized telemetry
2018-04-07Prevent crash from uninitialized telemetryJames Rowe
2018-04-07Fix spelling of InitializeJames Rowe
2018-04-06Fix clang format issuesJames Rowe
2018-04-06GPU: Assert when finding a texture with a format type other than UNORM.Subv
2018-04-06GL: Set up the textures used for each draw call.Subv
Each Maxwell shader stage can have an arbitrary number of textures, but we're limited to a certain number in OpenGL. We try to only use the minimum amount of host textures by not keeping a 1:1 relation between guest texture ids and host texture ids, ie, guest texture id 8 can be host texture id 0 if it's the only texture used in the guest shader program. This mapping will have to be passed to the shader decompiler so it can rewrite the texture accesses.
2018-04-06GL: Bind the textures to the shaders used for drawing.Subv
2018-04-06GLCache: Specialize the MortonCopy function for the DXT1 texture format.Subv
It will now use the UnswizzleTexture function instead of the MortonCopyPixels128, which doesn't seem to work for textures.
2018-04-06GLCache: Implemented GetTextureSurface.Subv
2018-04-06GLCache: Support uploading compressed textures to the GPU.Subv
Compressed texture formats like DXT1, DXT2, DXT3, etc will use this to ease the load on the CPU.
2018-04-06GL: Remove remaining references to 3DS-specific pixel formatsSubv
2018-04-06RasterizerCache: Remove 3DS-specific pixel formats.Subv
We're only left with RGB8 and DXT1 for now. More will be added as they are needed.
2018-04-06GL: Create the sampler objects when starting up the GL rasterizer.Subv
2018-04-06GL: Ported the SamplerInfo struct from citra.Subv
2018-04-06GL: Rename PicaTexture to MaxwellTexture.Subv
2018-04-06GL: Added functions to convert Maxwell tex filters and wrap modes to OpenGL.Subv
2018-04-06Textures: Added a helper function to know if a texture is blocklinear or pitch.Subv
2018-04-06Merge pull request #310 from N00byKing/patch-1bunnei
Update multiple comments from citra to yuzu
2018-04-06core, main.h: Abort on 32Bit ROMs (#309)N00byKing
* core, main.h: Abort on 32Bit ROMs * main.cpp: Fix Grammar
2018-04-06Merge pull request #312 from jroweboy/update-fmtlibbunnei
Update fmtlib to fix msvc warnings
2018-04-05Update fmtlib to fix msvc warningsJames Rowe
Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different
2018-04-04rasterizer_interface.h: Update from citra to yuzuN00byKing
2018-04-04default_ini.h: Update from citra to yuzuN00byKing
2018-04-04gl_rasterizer_cache.cpp: Update from citra to yuzuN00byKing
2018-04-04gl_rasterizer_cache.h: Update from citra to yuzuN00byKing
2018-04-04renderer_opengl.h: Update from citra to yuzuN00byKing
2018-04-04Merge pull request #308 from bunnei/misc-fixes-2bunnei
Implement and stub several SVC/VI/Audio/Friend/etc. funcs
2018-04-02svc: Stub out SetThreadActivity, GetThreadContext.bunnei
2018-04-02audren_u: Stub out GetActiveAudioDeviceName.bunnei
2018-04-02audout_u: Implement GetAudioOutState.bunnei
2018-04-02nifm: GetResult does not return a data field.bunnei
2018-04-02vi: Implement GetDisplayResolution.bunnei
2018-04-02shared_memory: Remove incorrect 3ds-specific check.bunnei
2018-04-02service: Add friend:u interface.bunnei
2018-04-02Merge pull request #306 from daniellimws/new-fmt-macrosbunnei
logging: Use variadic template instead of FMT_VARIADIC
2018-04-03logging: Change FmtLogMessage to use variadic template instead of FMT_VARIADICDaniel Lim Wee Soong
Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it.
2018-04-02Merge pull request #262 from daniellimws/fmtlib-macrosbunnei
Logging: Add fmtlib-based macros
2018-04-02Merge pull request #267 from N00byKing/patch-1bunnei
Update Dialog from citra to yuzu
2018-04-02Merge pull request #276 from N00byKing/acctoyuzubunnei
Change Telemetry Names to yuzu and remove links to citra