2021-03-31 17:44:27 +00:00
|
|
|
// Copyright 2021 The Tint Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#ifndef SRC_TRANSFORM_CANONICALIZE_ENTRY_POINT_IO_H_
|
|
|
|
#define SRC_TRANSFORM_CANONICALIZE_ENTRY_POINT_IO_H_
|
|
|
|
|
|
|
|
#include "src/transform/transform.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace transform {
|
|
|
|
|
|
|
|
/// CanonicalizeEntryPointIO is a transform used to rewrite shader entry point
|
2021-08-04 22:15:28 +00:00
|
|
|
/// interfaces into a form that the generators can handle. Each entry point
|
|
|
|
/// function is stripped of all shader IO attributes and wrapped in a function
|
|
|
|
/// that provides the shader interface.
|
2021-08-05 17:34:19 +00:00
|
|
|
/// The transform config determines whether to use global variables, structures,
|
|
|
|
/// or parameters for the shader inputs and outputs, and optionally adds
|
|
|
|
/// additional builtins to the shader interface.
|
2021-03-31 17:44:27 +00:00
|
|
|
///
|
|
|
|
/// Before:
|
|
|
|
/// ```
|
|
|
|
/// struct Locations{
|
|
|
|
/// [[location(1)]] loc1 : f32;
|
|
|
|
/// [[location(2)]] loc2 : vec4<u32>;
|
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// [[stage(fragment)]]
|
2021-04-14 16:37:18 +00:00
|
|
|
/// fn frag_main([[builtin(position)]] coord : vec4<f32>,
|
2021-03-31 17:44:27 +00:00
|
|
|
/// locations : Locations) -> [[location(0)]] f32 {
|
2021-08-04 22:15:28 +00:00
|
|
|
/// if (coord.w > 1.0) {
|
|
|
|
/// return 0.0;
|
|
|
|
/// }
|
2021-03-31 17:44:27 +00:00
|
|
|
/// var col : f32 = (coord.x * locations.loc1);
|
|
|
|
/// return col;
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2021-08-04 22:15:28 +00:00
|
|
|
/// After (using structures for all parameters):
|
2021-03-31 17:44:27 +00:00
|
|
|
/// ```
|
|
|
|
/// struct Locations{
|
|
|
|
/// loc1 : f32;
|
|
|
|
/// loc2 : vec4<u32>;
|
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// struct frag_main_in {
|
2021-04-14 16:37:18 +00:00
|
|
|
/// [[builtin(position)]] coord : vec4<f32>;
|
2021-03-31 17:44:27 +00:00
|
|
|
/// [[location(1)]] loc1 : f32;
|
|
|
|
/// [[location(2)]] loc2 : vec4<u32>
|
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// struct frag_main_out {
|
|
|
|
/// [[location(0)]] loc0 : f32;
|
|
|
|
/// };
|
|
|
|
///
|
2021-08-04 22:15:28 +00:00
|
|
|
/// fn frag_main_inner(coord : vec4<f32>,
|
|
|
|
/// locations : Locations) -> f32 {
|
|
|
|
/// if (coord.w > 1.0) {
|
|
|
|
/// return 0.0;
|
|
|
|
/// }
|
|
|
|
/// var col : f32 = (coord.x * locations.loc1);
|
|
|
|
/// return col;
|
|
|
|
/// }
|
|
|
|
///
|
2021-03-31 17:44:27 +00:00
|
|
|
/// [[stage(fragment)]]
|
|
|
|
/// fn frag_main(in : frag_main_in) -> frag_main_out {
|
2021-08-04 22:15:28 +00:00
|
|
|
/// let inner_retval = frag_main_inner(in.coord, Locations(in.loc1, in.loc2));
|
|
|
|
/// var wrapper_result : frag_main_out;
|
|
|
|
/// wrapper_result.loc0 = inner_retval;
|
|
|
|
/// return wrapper_result;
|
2021-03-31 17:44:27 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2021-06-25 10:26:26 +00:00
|
|
|
class CanonicalizeEntryPointIO
|
|
|
|
: public Castable<CanonicalizeEntryPointIO, Transform> {
|
2021-03-31 17:44:27 +00:00
|
|
|
public:
|
2021-08-05 17:34:19 +00:00
|
|
|
/// ShaderStyle is an enumerator of different ways to emit shader IO.
|
|
|
|
enum class ShaderStyle {
|
|
|
|
/// Target SPIR-V (using global variables).
|
|
|
|
kSpirv,
|
|
|
|
/// Target MSL (using non-struct function parameters for builtins).
|
|
|
|
kMsl,
|
|
|
|
/// Target HLSL (using structures for all IO).
|
|
|
|
kHlsl,
|
2021-06-04 14:40:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Configuration options for the transform.
|
|
|
|
struct Config : public Castable<Config, Data> {
|
|
|
|
/// Constructor
|
2021-08-05 17:34:19 +00:00
|
|
|
/// @param style the approach to use for emitting shader IO.
|
2021-06-22 20:08:29 +00:00
|
|
|
/// @param sample_mask an optional sample mask to combine with shader masks
|
2021-08-05 16:21:59 +00:00
|
|
|
/// @param emit_vertex_point_size `true` to generate a pointsize builtin
|
2021-08-05 17:34:19 +00:00
|
|
|
explicit Config(ShaderStyle style,
|
2021-08-05 16:21:59 +00:00
|
|
|
uint32_t sample_mask = 0xFFFFFFFF,
|
|
|
|
bool emit_vertex_point_size = false);
|
2021-06-04 14:40:28 +00:00
|
|
|
|
|
|
|
/// Copy constructor
|
|
|
|
Config(const Config&);
|
|
|
|
|
|
|
|
/// Destructor
|
|
|
|
~Config() override;
|
|
|
|
|
2021-08-05 17:34:19 +00:00
|
|
|
/// The approach to use for emitting shader IO.
|
|
|
|
ShaderStyle const shader_style;
|
2021-06-22 20:08:29 +00:00
|
|
|
|
|
|
|
/// A fixed sample mask to combine into masks produced by fragment shaders.
|
|
|
|
uint32_t const fixed_sample_mask;
|
2021-08-05 16:21:59 +00:00
|
|
|
|
|
|
|
/// Set to `true` to generate a pointsize builtin and have it set to 1.0
|
|
|
|
/// from all vertex shaders in the module.
|
|
|
|
bool const emit_vertex_point_size;
|
2021-06-04 14:40:28 +00:00
|
|
|
};
|
|
|
|
|
2021-03-31 17:44:27 +00:00
|
|
|
/// Constructor
|
|
|
|
CanonicalizeEntryPointIO();
|
|
|
|
~CanonicalizeEntryPointIO() override;
|
|
|
|
|
2021-06-25 10:26:26 +00:00
|
|
|
protected:
|
|
|
|
/// Runs the transform using the CloneContext built for transforming a
|
|
|
|
/// program. Run() is responsible for calling Clone() on the CloneContext.
|
|
|
|
/// @param ctx the CloneContext primed with the input program and
|
|
|
|
/// ProgramBuilder
|
|
|
|
/// @param inputs optional extra transform-specific input data
|
|
|
|
/// @param outputs optional extra transform-specific output data
|
|
|
|
void Run(CloneContext& ctx, const DataMap& inputs, DataMap& outputs) override;
|
2021-08-04 22:15:28 +00:00
|
|
|
|
|
|
|
struct State;
|
2021-03-31 17:44:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace transform
|
|
|
|
} // namespace tint
|
|
|
|
|
|
|
|
#endif // SRC_TRANSFORM_CANONICALIZE_ENTRY_POINT_IO_H_
|