mirror of https://github.com/adamdruppe/arsd.git
Rename `typeCast!T()` to `castTo!T()`
This commit is contained in:
parent
033770a6c6
commit
bd502fb912
22
core.d
22
core.d
|
@ -190,32 +190,36 @@ version(Posix) {
|
||||||
)
|
)
|
||||||
|
|
||||||
---
|
---
|
||||||
int i = cast(int)(foo * bar);
|
int i = cast(int)(foo * bar);
|
||||||
int i = typeCast!int(foo * bar);
|
int i = castTo!int(foo * bar);
|
||||||
|
|
||||||
int j = cast(int) round(floatValue);
|
int j = cast(int) round(floatValue);
|
||||||
int j = round(floatValue).typeCast!int;
|
int j = round(floatValue).castTo!int;
|
||||||
|
|
||||||
int k = cast(int) floatValue + foobar;
|
int k = cast(int) floatValue + foobar;
|
||||||
int k = floatValue.typeCast!int + foobar;
|
int k = floatValue.castTo!int + foobar;
|
||||||
|
|
||||||
auto m = Point(
|
auto m = Point(
|
||||||
cast(int) calc(a.x, b.x),
|
cast(int) calc(a.x, b.x),
|
||||||
cast(int) calc(a.y, b.y),
|
cast(int) calc(a.y, b.y),
|
||||||
);
|
);
|
||||||
auto m = Point(
|
auto m = Point(
|
||||||
calc(a.x, b.x).typeCast!int,
|
calc(a.x, b.x).castTo!int,
|
||||||
calc(a.y, b.y).typeCast!int,
|
calc(a.y, b.y).castTo!int,
|
||||||
);
|
);
|
||||||
---
|
---
|
||||||
|
|
||||||
History:
|
History:
|
||||||
Added April 24, 2024
|
Added on April 24, 2024.
|
||||||
|
Renamed from `typeCast` to `castTo` on May 24, 2024.
|
||||||
+/
|
+/
|
||||||
auto ref T typeCast(T, S)(auto ref S v) {
|
auto ref T castTo(T, S)(auto ref S v) {
|
||||||
return cast(T) v;
|
return cast(T) v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
alias typeCast = castTo;
|
||||||
|
|
||||||
// enum stringz : const(char)* { init = null }
|
// enum stringz : const(char)* { init = null }
|
||||||
|
|
||||||
/++
|
/++
|
||||||
|
|
|
@ -38,7 +38,7 @@ static assert(Pixel.sizeof == uint.sizeof);
|
||||||
///
|
///
|
||||||
Pixel rgba(ubyte r, ubyte g, ubyte b, float aPct)
|
Pixel rgba(ubyte r, ubyte g, ubyte b, float aPct)
|
||||||
in (aPct >= 0 && aPct <= 1) {
|
in (aPct >= 0 && aPct <= 1) {
|
||||||
return Pixel(r, g, b, typeCast!ubyte(aPct * 255));
|
return Pixel(r, g, b, castTo!ubyte(aPct * 255));
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
@ -141,7 +141,7 @@ struct Pixmap {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return typeCast!int(data.length / width);
|
return castTo!int(data.length / width);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Rectangular size of the buffer
|
/// Rectangular size of the buffer
|
||||||
|
@ -151,7 +151,7 @@ struct Pixmap {
|
||||||
|
|
||||||
/// Length of the buffer, i.e. the number of pixels
|
/// Length of the buffer, i.e. the number of pixels
|
||||||
int length() inout {
|
int length() inout {
|
||||||
return typeCast!int(data.length);
|
return castTo!int(data.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
|
@ -290,7 +290,7 @@ ubyte n255thsOf(const ubyte nPercentage, const ubyte value) {
|
||||||
// Accuracy verification
|
// Accuracy verification
|
||||||
|
|
||||||
static ubyte n255thsOfFP64(const ubyte nPercentage, const ubyte value) {
|
static ubyte n255thsOfFP64(const ubyte nPercentage, const ubyte value) {
|
||||||
return (value * nPercentage / 255.0).round().typeCast!ubyte();
|
return (value * nPercentage / 255.0).round().castTo!ubyte();
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int value = ubyte.min; value <= ubyte.max; ++value) {
|
for (int value = ubyte.min; value <= ubyte.max; ++value) {
|
||||||
|
@ -332,7 +332,7 @@ void opacity(ref Pixmap pixmap, const ubyte opacity) {
|
||||||
void opacityF(ref Pixmap pixmap, const float opacity)
|
void opacityF(ref Pixmap pixmap, const float opacity)
|
||||||
in (opacity >= 0)
|
in (opacity >= 0)
|
||||||
in (opacity <= 1.0) {
|
in (opacity <= 1.0) {
|
||||||
immutable opacity255 = round(opacity * 255).typeCast!ubyte;
|
immutable opacity255 = round(opacity * 255).castTo!ubyte;
|
||||||
pixmap.opacity = opacity255;
|
pixmap.opacity = opacity255;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -517,7 +517,7 @@ void drawLine(Pixmap target, Point a, Point b, Pixel color) {
|
||||||
|
|
||||||
float deltaX = b.x - a.x;
|
float deltaX = b.x - a.x;
|
||||||
float deltaY = b.y - a.y;
|
float deltaY = b.y - a.y;
|
||||||
int steps = sqrt(deltaX * deltaX + deltaY * deltaY).typeCast!int;
|
int steps = sqrt(deltaX * deltaX + deltaY * deltaY).castTo!int;
|
||||||
|
|
||||||
float[2] step = [
|
float[2] step = [
|
||||||
(deltaX / steps),
|
(deltaX / steps),
|
||||||
|
@ -527,8 +527,8 @@ void drawLine(Pixmap target, Point a, Point b, Pixel color) {
|
||||||
foreach (i; 0 .. steps) {
|
foreach (i; 0 .. steps) {
|
||||||
// dfmt off
|
// dfmt off
|
||||||
immutable Point p = a + Point(
|
immutable Point p = a + Point(
|
||||||
round(step[0] * i).typeCast!int,
|
round(step[0] * i).castTo!int,
|
||||||
round(step[1] * i).typeCast!int,
|
round(step[1] * i).castTo!int,
|
||||||
);
|
);
|
||||||
// dfmt on
|
// dfmt on
|
||||||
|
|
||||||
|
|
|
@ -238,7 +238,7 @@ private @safe pure nothrow @nogc {
|
||||||
|
|
||||||
Point offsetCenter(const Size drawing, const Size canvas) {
|
Point offsetCenter(const Size drawing, const Size canvas) {
|
||||||
auto delta = canvas.deltaPerimeter(drawing);
|
auto delta = canvas.deltaPerimeter(drawing);
|
||||||
return (typeCast!Point(delta) >> 1);
|
return (castTo!Point(delta) >> 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -278,8 +278,8 @@ Viewport calculateViewport(const ref PresenterConfig config) @safe pure nothrow
|
||||||
case Scaling.contain:
|
case Scaling.contain:
|
||||||
const float scaleF = karContainScalingFactorF(config.renderer.resolution, config.window.size);
|
const float scaleF = karContainScalingFactorF(config.renderer.resolution, config.window.size);
|
||||||
size = Size(
|
size = Size(
|
||||||
typeCast!int(scaleF * config.renderer.resolution.width),
|
castTo!int(scaleF * config.renderer.resolution.width),
|
||||||
typeCast!int(scaleF * config.renderer.resolution.height),
|
castTo!int(scaleF * config.renderer.resolution.height),
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -297,8 +297,8 @@ Viewport calculateViewport(const ref PresenterConfig config) @safe pure nothrow
|
||||||
case Scaling.cover:
|
case Scaling.cover:
|
||||||
const float fillF = karCoverScalingFactorF(config.renderer.resolution, config.window.size);
|
const float fillF = karCoverScalingFactorF(config.renderer.resolution, config.window.size);
|
||||||
size = Size(
|
size = Size(
|
||||||
typeCast!int(fillF * config.renderer.resolution.width),
|
castTo!int(fillF * config.renderer.resolution.width),
|
||||||
typeCast!int(fillF * config.renderer.resolution.height),
|
castTo!int(fillF * config.renderer.resolution.height),
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -549,7 +549,7 @@ final class OpenGl3PixmapRenderer : PixmapRenderer {
|
||||||
0, 0,
|
0, 0,
|
||||||
_poc.config.renderer.resolution.width, _poc.config.renderer.resolution.height,
|
_poc.config.renderer.resolution.width, _poc.config.renderer.resolution.height,
|
||||||
GL_RGBA, GL_UNSIGNED_BYTE,
|
GL_RGBA, GL_UNSIGNED_BYTE,
|
||||||
typeCast!(void*)(_poc.framebuffer.data.ptr)
|
castTo!(void*)(_poc.framebuffer.data.ptr)
|
||||||
);
|
);
|
||||||
|
|
||||||
glUseProgram(_shader.shaderProgram);
|
glUseProgram(_shader.shaderProgram);
|
||||||
|
@ -604,7 +604,7 @@ final class OpenGl3PixmapRenderer : PixmapRenderer {
|
||||||
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * GLfloat.sizeof, null);
|
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * GLfloat.sizeof, null);
|
||||||
glEnableVertexAttribArray(0);
|
glEnableVertexAttribArray(0);
|
||||||
|
|
||||||
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * GLfloat.sizeof, typeCast!(void*)(2 * GLfloat.sizeof));
|
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * GLfloat.sizeof, castTo!(void*)(2 * GLfloat.sizeof));
|
||||||
glEnableVertexAttribArray(1);
|
glEnableVertexAttribArray(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -785,7 +785,7 @@ final class OpenGl1PixmapRenderer : PixmapRenderer {
|
||||||
0, 0,
|
0, 0,
|
||||||
_poc.config.renderer.resolution.width, _poc.config.renderer.resolution.height,
|
_poc.config.renderer.resolution.width, _poc.config.renderer.resolution.height,
|
||||||
GL_RGBA, GL_UNSIGNED_BYTE,
|
GL_RGBA, GL_UNSIGNED_BYTE,
|
||||||
typeCast!(void*)(_poc.framebuffer.data.ptr)
|
castTo!(void*)(_poc.framebuffer.data.ptr)
|
||||||
);
|
);
|
||||||
|
|
||||||
glBegin(GL_QUADS);
|
glBegin(GL_QUADS);
|
||||||
|
|
Loading…
Reference in New Issue