Search

June 30
Issues »
...BL_DEFINE_ENUM(BLObjectType) {
  BL_OBJECT_TYPE_RGBA = 0,
  BL_OBJECT_TYPE_RGBA32 = 1,
};

int...
July 23, 2023
Learn »
...0, GL_RGB, width, hight, 0, GL_RGBA, GL_UNSIGNED_BYTE, texData[u-1].ptr...
December 17, 2022
Genel »
...240, true);
}

struct Color {}
class Point {
  Color rgba;
  int x, y;
  bool hidden;

  mixin(cKur...
August 11, 2022
Announce »
...needs an pallete of 256 16-bit RGBA, that's 2 kb. Is that portable...
August 02, 2022
Genel »
...const mode = imgSurf.format.BytesPerPixel == 4 ? GL_RGBA : GL_RGB;
        glTexImage2D(GL_TEXTURE_2D, 0...
June 17, 2022
General »
...d
// declare `this(rgba, x, y)`, no `hidden` parameter
mixin defaultClassCtor!(q{rgba, x, y...
June 16, 2022
General »
...params[i];
        }
    }
};

struct Color {}

class Point
{
    Color rgba;
    int x, y;
    bool hidden;

    mixin(defaultClassConstructor...
June 16, 2022
General »
...constructor!

```d
struct Color {}
class Point {
  Color rgba;
  int x, y;
  bool hidden;

  this(Color...
May 17, 2022
Learn »
...shapes.

```d
class Shape {
   private:
      float scale;
      RGBA color;
      DrawBuffer buffer; // some API-specific vertex...
April 27, 2022
Learn »
...file");
	auto tci = image.getAsTrueColorImage(); // convert to rgba for simplicity

	import std.file;
	auto font...