Home
last modified time | relevance | path

Searched refs:blendpixel (Results 1 – 13 of 13) sorted by relevance

/dports/games/powder-toy/The-Powder-Toy-95.0/src/graphics/
H A DRasterDrawMethods.inl274 blendpixel(y, x, r, g, b, a);
276 blendpixel(x, y, r, g, b, a);
293 blendpixel(x+i, y, r, g, b, a);
294 blendpixel(x+i, y+h, r, g, b, a);
298 blendpixel(x, y+i, r, g, b, a);
299 blendpixel(x+w, y+i, r, g, b, a);
308 blendpixel(x+i, y+j, r, g, b, a);
317 blendpixel(x, y+j, r, g, b, a);
328 blendpixel(x+i-rx, y+j-ry, r, g, b, a);
347 blendpixel(x, y+j, r, g, b, a);
[all …]
H A DRenderer.cpp694 blendpixel(x+1, y, cr, cg, cb, 112); in DrawBlob()
695 blendpixel(x-1, y, cr, cg, cb, 112); in DrawBlob()
696 blendpixel(x, y+1, cr, cg, cb, 112); in DrawBlob()
697 blendpixel(x, y-1, cr, cg, cb, 112); in DrawBlob()
699 blendpixel(x+1, y-1, cr, cg, cb, 64); in DrawBlob()
700 blendpixel(x-1, y-1, cr, cg, cb, 64); in DrawBlob()
701 blendpixel(x+1, y+1, cr, cg, cb, 64); in DrawBlob()
702 blendpixel(x-1, y+1, cr, cg, cb, 64); in DrawBlob()
2328 blendpixel(i, j, r, g, b, a); in draw_other()
2525 blendpixel(x+1, y, cr, cg, cb, 112); in drawblob()
[all …]
H A DOpenGLDrawMethods.inl198 void PIXELMETHODS_CLASS::blendpixel(int x, int y, int r, int g, int b, int a) function in PIXELMETHODS_CLASS
319 blendpixel(x, y+j, r, g, b, a);
330 blendpixel(x+i-rx, y+j-ry, r, g, b, a);
332 blendpixel(x-i+rx, y+j-ry, r, g, b, a);
335 blendpixel(x+i-rx, y-j+ry, r, g, b, a);
337 blendpixel(x-i+rx, y-j+ry, r, g, b, a);
349 blendpixel(x, y+j, r, g, b, a);
359 blendpixel(x+i-rx, y+j-ry, r, g, b, a);
361 blendpixel(x-i+rx, y+j-ry, r, g, b, a);
H A DRenderer.h110 void blendpixel(int x, int y, int r, int g, int b, int a);
H A DGraphics.h126 void blendpixel(int x, int y, int r, int g, int b, int a);
/dports/games/powder-toy/The-Powder-Toy-95.0/font/
H A Deditor.c24 void blendpixel(unsigned *vid, int x, int y, int r, int g, int b, int a) in blendpixel() function
49 blendpixel(vid, x+i+left[c], y+j+top[c], r, g, b, (font[c][j][i]*255)/3); in drawchar()
91 blendpixel(vid, y, x, r, g, b, a); in drawline()
93 blendpixel(vid, x, y, r, g, b, a); in drawline()
108 blendpixel(vid, x0+x, y0+y, 127*m, 127*m, 127*m, c); in drawcell()
112 blendpixel(vid, x0+x, y0, 64*m, 64*m, 64*m, 255); in drawcell()
114 blendpixel(vid, x0, y0+x, 64*m, 64*m, 64*m, 255); in drawcell()
115 blendpixel(vid, x0+x, y0+32, 64*m, 64*m, 64*m, 255); in drawcell()
116 blendpixel(vid, x0+32, y0+x, 64*m, 64*m, 64*m, 255); in drawcell()
/dports/games/powder-toy/The-Powder-Toy-95.0/src/debug/
H A DElementPopulation.cpp64 …g->blendpixel(xStart+barX, yBottom-barSize-3, PIXR(sim->elements[i].Colour), PIXG(sim->elements[i]… in Draw()
65 …g->blendpixel(xStart+barX, yBottom-barSize-5, PIXR(sim->elements[i].Colour), PIXG(sim->elements[i]… in Draw()
66 …g->blendpixel(xStart+barX, yBottom-barSize-7, PIXR(sim->elements[i].Colour), PIXG(sim->elements[i]… in Draw()
/dports/games/powder-toy/The-Powder-Toy-95.0/src/gui/colourpicker/
H A DColourPickerActivity.cpp272 g->blendpixel(currx, (saturation/2)+offsetY, cr, cg, cb, currentAlpha); in OnDraw()
285 g->blendpixel(value+offsetX, i+offsetY+127+5, cr, cg, cb, currentAlpha); in OnDraw()
/dports/games/powder-toy/The-Powder-Toy-95.0/src/gui/interface/
H A DSlider.cpp115 …g->blendpixel(screenPos.X+i+2, screenPos.Y+j+2, bgGradient[(i-3)*3], bgGradient[(i-3)*3+1], bgGrad… in Draw()
/dports/games/powder-toy/The-Powder-Toy-95.0/src/gui/game/
H A DSignTool.cpp190 g->blendpixel(x, y, 192, 192, 192, 255); in DoDraw()
H A DGameView.cpp2247 g->blendpixel(x+29-i, y+j, cr>255?255:cr, cg>255?255:cg, cb>255?255:cb, alpha); in OnDraw()
/dports/games/powder-toy/The-Powder-Toy-95.0/src/gui/font/
H A DFontEditor.cpp443 g->blendpixel(8 + i, 8 + FONT_H * FONT_SCALE + 4 + j, fgR, fgG, fgB, pixels[j][i] * 255 / 3); in OnDraw()
/dports/games/powder-toy/The-Powder-Toy-95.0/src/lua/
H A DLegacyLuaAPI.cpp1014 luacon_g->blendpixel(x, y, r, g, b, a); in luatpt_drawpixel()