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

Fix typo on GLSL_EXT_shader_quad_control #272

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions extensions/ext/GLSL_EXT_shader_quad_control.txt
Original file line number Diff line number Diff line change
Expand Up @@ -157,22 +157,22 @@ Additions to Chapter 8 of the OpenGL Shading Language Specification

Syntax:

bool quadAll(bool value);
bool subgroupQuadAll(bool value);

Only usable if the extensions GL_KHR_shader_subgroup_vote and
GL_EXT_shader_quad_control are enabled.

The function quadAll() returns true if for all active invocations in the
The function subgroupQuadAll() returns true if for all active invocations in the
quad <value> evaluates to true.

Syntax:

bool quadAny(bool value);
bool subgroupQuadAny(bool value);

Only usable if the extensions GL_KHR_shader_subgroup_vote and
GL_EXT_shader_quad_control are enabled.

The function quadAny() returns true if for any active invocation in the
The function subgroupQuadAny() returns true if for any active invocation in the
quad its <value> evaluates to true.

Revision History
Expand Down