File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -254,16 +254,17 @@ bool all(double4);
254
254
// ===----------------------------------------------------------------------===//
255
255
256
256
// \fn bool and(bool x, bool y)
257
- // \brief Logically ands two boolean vectors elementwise and produces a bool vector output.
257
+ // \brief Logically ands two boolean vectors elementwise and produces a bool
258
+ // vector output.
258
259
259
260
_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
260
- bool and(bool x, bool y);
261
+ bool and (bool x, bool y);
261
262
_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
262
- bool2 and(bool2 x, bool2 y);
263
+ bool2 and (bool2 x, bool2 y);
263
264
_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
264
- bool3 and(bool3 x, bool3 y);
265
+ bool3 and (bool3 x, bool3 y);
265
266
_HLSL_BUILTIN_ALIAS (__builtin_hlsl_and)
266
- bool4 and(bool4 x, bool4 y);
267
+ bool4 and (bool4 x, bool4 y);
267
268
268
269
// ===----------------------------------------------------------------------===//
269
270
// any builtins
You can’t perform that action at this time.
0 commit comments