Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ppy.osu.Framework.Android from 2023.801.0 to 2023.823.0 #327

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2023

Bumps ppy.osu.Framework.Android from 2023.801.0 to 2023.823.0.

Release notes

Sourced from ppy.osu.Framework.Android's releases.

2023.823.0

What's Changed

Full Changelog: ppy/osu-framework@2023.822.0...2023.823.0

2023.822.0

What's Changed

Breaking changes

Maskable vertex input layout has changed

Vertices which want to use the built-in VertexShaderDescriptor.TEXTURE fragment shader, or the sh_Masking.h particle, will need to adjust the vertex input slightly:

+ #include "Internal/sh_MaskingInfo.h"
layout(location = 0) in vec2 m_Position;


layout(location = 1) in int m_MaskingIndex;


layout(location = 5) flat out int v_MaskingIndex;


layout(location = 6) out highp vec2 v_ScissorPosition;


void main(void)
{


InitMasking(m_MaskingIndex);
// Transform from screen space to masking space.



highp vec3 maskingPos = g_ToMaskingSpace * vec3(m_Position, 1.0);



highp vec4 maskingPos = g_MaskingInfo.ToMaskingSpace * vec4(m_Position, 1.0, 0.0);
v_MaskingPosition = maskingPos.xy / maskingPos.z;


// Transform from screen space to scissor space.


highp vec4 scissorPos = g_MaskingInfo.ToScissorSpace * vec4(m_Position, 1.0, 0.0);


v_ScissorPosition = scissorPos.xy / scissorPos.z;


v_MaskingIndex = m_MaskingIndex;


</tr></table>

... (truncated)

Commits
  • 091a670 Merge pull request #5979 from smoogipoo/remove-blur-shader-hack
  • 8864d3b Update SPIRV to latest package version
  • 2c0eceb Merge branch 'master' into remove-blur-shader-hack
  • 08fd5fa Merge pull request #5978 from smoogipoo/shader-cache-version
  • d3ff218 Merge pull request #5977 from FreezyLemon/expand-video-tests
  • 0f57e4e Merge branch 'master' into expand-video-tests
  • 3945fee Reduce duplication in test case filename specs
  • c93b752 Merge pull request #5976 from FreezyLemon/add-d3d11va
  • 1c6bb28 Add video demuxing & decoding tests
  • f16b541 Remove now unnecessary blur shader workaround
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [ppy.osu.Framework.Android](https://github.com/ppy/osu-framework) from 2023.801.0 to 2023.823.0.
- [Release notes](https://github.com/ppy/osu-framework/releases)
- [Commits](ppy/osu-framework@2023.801.0...2023.823.0)

---
updated-dependencies:
- dependency-name: ppy.osu.Framework.Android
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 1, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 1, 2023

Superseded by #334.

@dependabot dependabot bot closed this Oct 1, 2023
@dependabot dependabot bot deleted the dependabot/nuget/ppy.osu.Framework.Android-2023.823.0 branch October 1, 2023 23:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file size/XS
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants