Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/metal/mtl_immediate.mm')
-rw-r--r--source/blender/gpu/metal/mtl_immediate.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/gpu/metal/mtl_immediate.mm b/source/blender/gpu/metal/mtl_immediate.mm
index 4820c9db9df..aaebe7e20f8 100644
--- a/source/blender/gpu/metal/mtl_immediate.mm
+++ b/source/blender/gpu/metal/mtl_immediate.mm
@@ -49,7 +49,7 @@ uchar *MTLImmediate::begin()
void MTLImmediate::end()
{
- /* Ensure we're between a imm::begin/imm:end pair. */
+ /* Ensure we're between a `imm::begin` / `imm:end` pair. */
BLI_assert(has_begun_);
BLI_assert(prim_type != GPU_PRIM_NONE);
@@ -187,7 +187,7 @@ void MTLImmediate::end()
/* Some conversions are NOT valid, e.g. Int4 to Float4
* - In this case, we need to implement a conversion routine inside the shader.
* - This is handled using the format_conversion_mode flag
- * - This flag is passed into the PSO as a function specialisation,
+ * - This flag is passed into the PSO as a function specialization,
* and will generate an appropriate conversion function when reading the vertex attribute
* value into local shader storage.
* (If no explicit conversion is needed, the function specialize to a pass-through). */
@@ -359,7 +359,7 @@ void MTLImmediate::end()
}
/* Submit draw call with modified vertex count, which reflects vertices per primitive
- * defined in the USE_SSBO_VERTEX_FETCH pragma. */
+ * defined in the USE_SSBO_VERTEX_FETCH `pragma`. */
int num_input_primitives = gpu_get_prim_count_from_type(vertex_count, this->prim_type);
int output_num_verts = num_input_primitives *
active_mtl_shader->get_ssbo_vertex_fetch_output_num_verts();