/usr/src/castle-game-engine-5.2.0/opengl/castleglimages_tglimage.inc is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 | {
Copyright 2001-2014 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
----------------------------------------------------------------------------
}
{ Part of CastleGLImages unit: drawing 2D images on screen (TGLImage class). }
{$ifdef read_interface}
type
{ Image ready to be drawn on 2D screen. }
TGLImage = class
private
const
PointCount = 4;
type
TPoint = packed record
Position: TVector2SmallInt;
TexCoord: TVector2Single;
end;
{$ifdef GLImageUseShaders}
TColorTreatment = (
{ Use texture color to draw. }
ctTexture,
{ Use constant color * texture (on all RGBA channels). }
ctColorMultipliesTexture,
{ Use constant color for RGB,
for alpha use constant color.a * texture.
Useful when texture has no alpha information. }
ctColorMultipliesTextureAlpha);
{$endif}
var
{ Static OpenGL resources, used by all TGLImage instances. }
PointVbo: TGLuint; static;
{ Point VBO contents, reused in every Draw. }
Point: array [0..PointCount - 1] of TPoint; static;
{$ifdef GLImageUseShaders}
TextureHasOnlyAlpha: boolean;
GLSLProgram: array [boolean { alpha test? }, TColorTreatment] of TGLSLProgram; static;
{$endif}
Texture: TGLTextureId;
FWidth: Cardinal;
FHeight: Cardinal;
FAlpha: TAlphaChannel;
FIgnoreTooLargeCorners: boolean;
FColor: TCastleColor;
FScalingPossible: boolean;
procedure AlphaBegin;
procedure AlphaEnd;
procedure UpdateScalingPossible(const NeedToBind: boolean);
procedure SetScalingPossible(const Value: boolean);
{ Prepare static stuff for rendering. }
class procedure PrepareStatic;
function CurrentFilter: TTextureFilter;
public
{ Prepare image for drawing.
@raises(EImageClassNotSupportedForOpenGL When Image class is not supported
by OpenGL.) }
constructor Create(const Image: TEncodedImage;
const AScalingPossible: boolean = false);
{ Load image from disk, and prepare for drawing.
@param(LoadAsClass Force a specific image class to load.
Must be a subset of PixelsImageClasses, as other classes cannot
be loaded into OpenGL 2D images, otherwise you may get
EImageClassNotSupportedForOpenGL exception.
Pass empty set [] to load into any allowed class
(it's equivalent to passing LoadAsClass = PixelsImageClasses).
You can pass e.g. [TRGBImage] to force loading into an RGB image without
an alpha channel (it will be stripped from the image if necessary).)
@param(ResizeToX After loading, resize to given width.
Pass 0 to not resize width.)
@param(ResizeToY After loading, resize to given height.
Pass 0 to not resize height.)
@param(Interpolation If any resizing will be needed (if
ResizeToX / ResizeToY parameters request some specific size,
and it is different than loaded image size) then the resize
operation will use given interpolation.)
@raises(EImageClassNotSupportedForOpenGL When image class is not supported
by OpenGL.)
}
constructor Create(const URL: string;
const AScalingPossible: boolean = false);
constructor Create(const URL: string;
const LoadAsClass: array of TEncodedImageClass;
const ResizeToX: Cardinal = 0;
const ResizeToY: Cardinal = 0;
const Interpolation: TResizeInterpolation = riNearest);
constructor Create(const URL: string;
const LoadAsClass: array of TEncodedImageClass;
const AScalingPossible: boolean);
destructor Destroy; override;
property Width: Cardinal read FWidth;
property Height: Cardinal read FHeight;
{ Rectangle representing the inside of this image.
Always (Left,Bottom) are zero, and (Width,Height) correspond to image
sizes. }
function Rect: TRectangle;
{ How to treat alpha channel of the texture.
@unorderedList(
@item acNone means to ignore it.
@item acSimpleYesNo means to render with alpha-test.
@item acFullRange means to render with blending.
)
This is initialized based on loaded image class and data.
This means that e.g. if you have smooth alpha channel in the image,
it will be automatically rendered with nice blending.
You can change the value of this property to force a specific
rendering method, for example to force using alpha test or alpha blending
regardless of alpha values. Or to disable alpha channel usage,
because your image must always cover pixels underneath.
Remember that you can also change the alpha channel existence
at loading: use LoadAsClass parameters of LoadImage
or TGLImage.Create to force your image to have/don't have
an alpha channel (e.g. use LoadAsClass=[TRGBImage]
to force RGB image without alpha, use LoadAsClass=[TRGBAlphaImage]
to force alpha channel). }
property Alpha: TAlphaChannel read FAlpha write FAlpha;
{ Draw the image as 2D on screen.
The X, Y parameters determine where the left-bottom
corner of the image will be placed (from 0 to size - 1).
The overloaded version without X, Y parameters uses current WindowPos.
You should only use this inside TUIControl.Render when TUIControl.RenderStyle
returns rs2D. This means that we require that current projection is 2D
and lighting / depth test and such are off.
The image is drawn in 2D. In normal circumstances
1 pixel of the image is just placed over 1 pixel of the screen,
and we draw the whole image. You can also use the overloaded
version with 8 parameters where you explicitly specify the
DrawWidth and DrawHeight of the rectangle on the screen, and explicitly choose
the portion of the image to draw. If you want to draw scaled image
(that is, use ImageWidth different than DrawWidth or ImageHeight
different than DrawHeight) be sure to construct an image with
ScalingPossible = @true (otherwise runtime scaling may look ugly).
Note that the image position (ImageX, ImageY) is specified
like a texture coordinate. So (0, 0) is actually
the left-bottom corner of the left-bottom pixel,
and (Width,Height) is the right-top corner of the right-top pixel.
That is why image position and sizes are floats, it makes sense
to render partial pixels this way (make sure you have
ScalingPossible = @true to get nice scaling of image contents).
You can also flip the image horizontally or vertically,
e.g. use ImageX = Width and ImageWidth = -Width to mirror
image horizontally.
@groupBegin }
procedure Draw;
procedure Draw(const X, Y: Integer);
procedure Draw(const Pos: TVector2Integer);
procedure Draw(const X, Y, DrawWidth, DrawHeight: Integer;
const ImageX, ImageY, ImageWidth, ImageHeight: Single);
procedure Draw(const ScreenRectangle: TRectangle);
procedure Draw(const ScreenRectangle: TRectangle;
const ImageX, ImageY, ImageWidth, ImageHeight: Single);
procedure Draw(const ScreenRectangle: TRectangle;
const ImageRect: TRectangle);
{ @groupEnd }
{ Draw the image on the screen, divided into 3x3 parts for corners,
sides, and inside.
Just like the regular @link(Draw) method, this fills a rectangle on the
2D screen, with bottom-left corner in (X, Y), and size (DrawWidth,
DrawHeight). The image is divided into 3 * 3 = 9 parts:
@unorderedList(
@item(4 corners, used to fill the corners of the screen
rectangle. They are not stretched.)
@item(4 sides, used to fill the sides of the screen rectangle
between the corners. They are scaled in one dimension, to fill
the space between corners completely.)
@item(the inside. Used to fill the rectangular inside.
Scaled in both dimensions as necessary.)
)
}
procedure Draw3x3(const X, Y, DrawWidth, DrawHeight: Integer;
const CornerTop, CornerRight, CornerBottom, CornerLeft: Integer);
procedure Draw3x3(const X, Y, DrawWidth, DrawHeight: Integer;
const Corner: TVector4Integer);
procedure Draw3x3(const ScreenRectangle: TRectangle;
const Corner: TVector4Integer);
{ Draw the image on the screen, divided into 3x1 parts:
unscaled left and right sides, and scaled inside.
Similar to @link(Draw3x3), but image is divided into 3 parts, not 9. }
procedure Draw3x1(const X, Y, DrawWidth, DrawHeight: Integer;
const SideRight, SideLeft: Integer);
procedure Draw3x1(const X, Y, DrawWidth, DrawHeight: Integer;
const Side: TVector2Integer);
procedure Draw3x1(const ScreenRectangle: TRectangle;
const Side: TVector2Integer);
{ Ignore (do not log to CastleLog) situations when Draw3x3 or Draw3x1
cannot work
because corners are larger than draw area size.
Set this to @true when it's perfectly possible (you do not want to even
see it in log) for Draw3x3 and Draw3x1 calls to fail because corners
are larger than draw area size. }
property IgnoreTooLargeCorners: boolean
read FIgnoreTooLargeCorners write FIgnoreTooLargeCorners default false;
{ Color to multiply the texture contents (all RGBA channels).
By default this is White, which is (1, 1, 1, 1) as RGBA,
and it means that texture contents are not actually modified.
This case is also optimized when possible, to no multiplication will
actually happen.
Note that the alpha of this color does not determine our alpha rendering
mode (it cannot, as you can change this color at any point,
and after creation the @link(Alpha) is never automatically updated).
If you set a color with alpha <> 1, consider setting also @link(Alpha)
property to whatever you need.
Note that if use TGrayscaleImage with TGrayscaleImage.TreatAsAlpha
(which means that texture does not contain any RGB information),
then only this color's RGB values determine the drawn RGB color. }
property Color: TCastleColor read FColor write FColor;
{ Load the given image contents.
Use this to efficiently replace the TGLImage contents on GPU.
Updates the @link(Width), @link(Height), @link(Alpha) to correspond
to new image. }
procedure Load(const Image: TEncodedImage);
{ Is the image filtering mode ready for scaling. "Scaling" here means drawing
such that one image pixel does not perfectly cover one screen pixel.
For example, using @link(Draw) to draw the whole image,
but with the size of the image on screen different than image size.
If you want to do such drawing, set ScalingPossible to @true.
On the other hand, if you will not ever do scaling, then leave
ScalingPossible to @false. It may cause minimally faster drawing,
and avoids any possible artifacts from bilinear filtering.
Note that switching this property after this object is constructed
is possible, but costly. }
property ScalingPossible: boolean read FScalingPossible write SetScalingPossible;
end;
{ Draw the image on 2D screen. Note that if you want to use this
many times, it will be much faster to create TGLImage instance.
@deprecated Deprecated, always use TGLImage to draw 2D images.
@raises(EImageClassNotSupportedForOpenGL When Image class is not supported
by OpenGL.) }
procedure ImageDraw(const Image: TCastleImage); deprecated;
{$endif read_interface}
{$ifdef read_implementation}
constructor TGLImage.Create(const Image: TEncodedImage;
const AScalingPossible: boolean);
begin
inherited Create;
// TODO: use texture cache here, like GL renderer does for textures for 3D.
// no need to create new OpenGL texture for the same image.
FColor := White;
glGenTextures(1, @Texture);
Load(Image); // Load will already call proper glBindTexture
FScalingPossible := AScalingPossible;
UpdateScalingPossible(false);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GLFeatures.CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GLFeatures.CLAMP_TO_EDGE);
PrepareStatic;
end;
constructor TGLImage.Create(const URL: string;
const AScalingPossible: boolean);
begin
Create(URL, [], AScalingPossible);
end;
constructor TGLImage.Create(const URL: string;
const LoadAsClass: array of TEncodedImageClass;
const ResizeToX, ResizeToY: Cardinal;
const Interpolation: TResizeInterpolation);
var
Image: TCastleImage;
begin
if High(LoadAsClass) = -1 then
Image := LoadImage(URL, PixelsImageClasses, ResizeToX, ResizeToY, Interpolation) else
Image := LoadImage(URL, LoadAsClass, ResizeToX, ResizeToY, Interpolation);
try
Create(Image);
finally FreeAndNil(Image) end;
end;
constructor TGLImage.Create(const URL: string;
const LoadAsClass: array of TEncodedImageClass;
const AScalingPossible: boolean);
var
Image: TEncodedImage;
begin
if High(LoadAsClass) = -1 then
Image := LoadEncodedImage(URL, PixelsImageClasses) else
Image := LoadEncodedImage(URL, LoadAsClass);
try
Create(Image, AScalingPossible);
finally FreeAndNil(Image) end;
end;
destructor TGLImage.Destroy;
begin
glFreeTexture(Texture);
inherited;
end;
procedure TGLImage.Load(const Image: TEncodedImage);
begin
LoadGLGeneratedTexture(Texture, Image, CurrentFilter, Texture2DClampToEdge,
nil, true);
FWidth := Image.Width;
FHeight := Image.Height;
FAlpha := Image.AlphaChannel;
{$ifdef GLImageUseShaders}
{ calculate TextureHasOnlyAlpha, useful only for GLSL image rendering }
TextureHasOnlyAlpha := (Image is TGrayscaleImage) and
(TGrayscaleImage(Image).TreatAsAlpha);
{$endif}
end;
class procedure TGLImage.PrepareStatic;
{$ifdef GLImageUseShaders}
var
AlphaTestShader: boolean;
ColorTreatment: TColorTreatment;
NewProgram: TGLSLProgram;
VS, FS: string;
{$endif}
begin
// Some Intel GPUs may not support VBO
if (PointVbo = 0) and GLFeatures.VertexBufferObject then
glGenBuffers(1, @PointVbo);
{$ifdef GLImageUseShaders}
{ create GLSLProgram programs }
for AlphaTestShader in boolean do
for ColorTreatment in TColorTreatment do
if GLSLProgram[AlphaTestShader, ColorTreatment] = nil then
begin
VS := {$I image.vs.inc};
FS := Iff(AlphaTestShader, '#define ALPHA_TEST' + NL, '') +
Iff(ColorTreatment in [ctColorMultipliesTexture, ctColorMultipliesTextureAlpha], '#define COLOR_UNIFORM' + NL, '') +
Iff(ColorTreatment = ctColorMultipliesTextureAlpha, '#define TEXTURE_HAS_ONLY_ALPHA' + NL, '') +
{$I image.fs.inc};
if Log and LogShaders then
begin
WritelnLogMultiline('TGLImage GLSL vertex shader', VS);
WritelnLogMultiline('TGLImage GLSL fragment shader', FS);
end;
NewProgram := TGLSLProgram.Create;
NewProgram.AttachVertexShader(VS);
NewProgram.AttachFragmentShader(FS);
NewProgram.Link(true);
GLSLProgram[AlphaTestShader, ColorTreatment] := NewProgram;
end;
{$endif}
end;
procedure TGLImage.AlphaBegin;
begin
case Alpha of
{$ifndef GLImageUseShaders}
acSimpleYesNo:
begin
glAlphaFunc(GL_GEQUAL, 0.5); // saved by GL_COLOR_BUFFER_BIT
glEnable(GL_ALPHA_TEST); // saved by GL_COLOR_BUFFER_BIT
end;
{$endif}
acFullRange:
begin
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // saved by GL_COLOR_BUFFER_BIT
glEnable(GL_BLEND); // saved by GL_COLOR_BUFFER_BIT
end;
end;
end;
procedure TGLImage.AlphaEnd;
begin
case Alpha of
{$ifndef GLImageUseShaders}
acSimpleYesNo: glDisable(GL_ALPHA_TEST);
{$endif}
acFullRange: glDisable(GL_BLEND);
end;
end;
procedure TGLImage.Draw;
begin
Draw(WindowPos[0], WindowPos[1]);
end;
procedure TGLImage.Draw(const X, Y: Integer);
begin
Draw(X, Y, Width, Height, 0, 0, Width, Height);
end;
procedure TGLImage.Draw(const Pos: TVector2Integer);
begin
Draw(Pos[0], Pos[1], Width, Height, 0, 0, Width, Height);
end;
procedure TGLImage.Draw(const X, Y, DrawWidth, DrawHeight: Integer;
const ImageX, ImageY, ImageWidth, ImageHeight: Single);
var
TexX0, TexY0, TexX1, TexY1: Single;
{$ifdef GLImageUseShaders}
ColorTreatment: TColorTreatment;
AttribEnabled: array [0..1] of TGLuint;
AttribLocation: TGLuint;
Prog: TGLSLProgram;
{$endif}
begin
if (DrawWidth = 0) or (DrawHeight = 0) then Exit;
if GLFeatures.UseMultiTexturing then glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, Texture);
GLEnableTexture(et2D);
TexX0 := ImageX / Width;
TexY0 := ImageY / Height;
TexX1 := (ImageX + ImageWidth ) / Width;
TexY1 := (ImageY + ImageHeight) / Height;
{ Protect from X, Y and sizes going outside of the SmallInt range.
We want to squeeze X, Y into SmallInt to make it a little more efficient
to render, and there are no displays with resolution outside of SmallInt
range anyway. }
if (X < Low(SmallInt)) or
(Y < Low(SmallInt)) or
(X + DrawWidth > High(SmallInt)) or
(X + DrawHeight > High(SmallInt)) then
Exit;
Point[0].TexCoord := Vector2Single(TexX0, TexY0);
Point[0].Position := Vector2SmallInt(X , Y);
Point[1].TexCoord := Vector2Single(TexX1, TexY0);
Point[1].Position := Vector2SmallInt(X + DrawWidth, Y);
Point[2].TexCoord := Vector2Single(TexX1, TexY1);
Point[2].Position := Vector2SmallInt(X + DrawWidth, Y + DrawHeight);
Point[3].TexCoord := Vector2Single(TexX0, TexY1);
Point[3].Position := Vector2SmallInt(X , Y + DrawHeight);
if GLFeatures.VertexBufferObject then
begin
glBindBuffer(GL_ARRAY_BUFFER, PointVbo);
glBufferData(GL_ARRAY_BUFFER, PointCount * SizeOf(TPoint),
@Point[0], GL_STREAM_DRAW);
end;
AlphaBegin;
{$ifdef GLImageUseShaders}
if TextureHasOnlyAlpha then
ColorTreatment := ctColorMultipliesTextureAlpha else
if not VectorsPerfectlyEqual(Color, White) then
ColorTreatment := ctColorMultipliesTexture else
ColorTreatment := ctTexture;
Prog := GLSLProgram[Alpha = acSimpleYesNo, ColorTreatment];
Prog.Enable;
AttribEnabled[0] := Prog.VertexAttribPointer('vertex', 0, 2, GL_SHORT, GL_FALSE,
SizeOf(TPoint), Offset(Point[0].Position, Point[0]));
AttribEnabled[1] := Prog.VertexAttribPointer('tex_coord', 0, 2, GL_FLOAT, GL_FALSE,
SizeOf(TPoint), Offset(Point[0].TexCoord, Point[0]));
Prog.SetUniform('viewport_size', Viewport2DSize);
if ColorTreatment <> ctTexture then
Prog.SetUniform('color', Color);
{$else}
glLoadIdentity();
glColorv(Color);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
if GLFeatures.VertexBufferObject then
begin
glVertexPointer(2, GL_SHORT,
SizeOf(TPoint), Offset(Point[0].Position, Point[0]));
glTexCoordPointer(2, GL_FLOAT,
SizeOf(TPoint), Offset(Point[0].TexCoord, Point[0]));
end else
begin
glVertexPointer (2, GL_SHORT, SizeOf(TPoint), @(Point[0].Position));
glTexCoordPointer(2, GL_FLOAT, SizeOf(TPoint), @(Point[0].TexCoord));
end;
{$endif}
glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
{$ifdef GLImageUseShaders}
Prog.Disable;
{ attribute arrays are enabled independent from GLSL program, so we need
to disable them separately }
for AttribLocation in AttribEnabled do
TGLSLProgram.DisableVertexAttribArray(AttribLocation);
{$else}
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
{$endif}
AlphaEnd;
if GLFeatures.VertexBufferObject then
begin
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
end;
GLEnableTexture(etNone);
end;
procedure TGLImage.Draw(const ScreenRectangle: TRectangle);
begin
Draw(ScreenRectangle.Left, ScreenRectangle.Bottom,
ScreenRectangle.Width, ScreenRectangle.Height,
0, 0, Width, Height);
end;
procedure TGLImage.Draw(const ScreenRectangle: TRectangle;
const ImageX, ImageY, ImageWidth, ImageHeight: Single);
begin
Draw(ScreenRectangle.Left, ScreenRectangle.Bottom,
ScreenRectangle.Width, ScreenRectangle.Height,
ImageX, ImageY, ImageWidth, ImageHeight);
end;
procedure TGLImage.Draw(const ScreenRectangle: TRectangle;
const ImageRect: TRectangle);
begin
Draw(ScreenRectangle.Left, ScreenRectangle.Bottom,
ScreenRectangle.Width, ScreenRectangle.Height,
ImageRect.Left, ImageRect.Bottom,
ImageRect.Width, ImageRect.Height);
end;
procedure TGLImage.Draw3x3(const X, Y, DrawWidth, DrawHeight: Integer;
const CornerTop, CornerRight, CornerBottom, CornerLeft: Integer);
var
XScreenLeft, XScreenRight, YScreenBottom, YScreenTop,
HorizontalScreenSize, VerticalScreenSize: Integer;
XImageLeft, XImageRight, YImageBottom, YImageTop,
HorizontalImageSize, VerticalImageSize: Single;
OldAlpha: TAlphaChannel;
{$ifdef GLImageUseShaders}
OptimizeAlpha: boolean;
{$endif}
EpsilonT, EpsilonR, EpsilonB, EpsilonL: Single;
const
{ We tweak texture coordinates a little, to avoid bilinear filtering
that would cause border colors to "bleed" over the texture inside.
Something minimally > 0.5 is necessary. }
Epsilon = 0.51;
begin
if not ( (CornerLeft + CornerRight < Width) and
(CornerLeft + CornerRight < DrawWidth) and
(CornerBottom + CornerTop < Height) and
(CornerBottom + CornerTop < DrawHeight)) then
begin
if Log and not IgnoreTooLargeCorners then
WritelnLog('Draw3x3', 'Image corners are too large to draw it: corners are %d %d %d %d, image size is %d %d, draw area size is %d %d',
[CornerTop, CornerRight, CornerBottom, CornerLeft,
Width, Height,
DrawWidth, DrawHeight]);
Exit;
end;
XScreenLeft := X;
XImageLeft := 0;
XScreenRight := X + DrawWidth - CornerRight;
XImageRight := Width - CornerRight;
YScreenBottom := Y;
YImageBottom := 0;
YScreenTop := Y + DrawHeight - CornerTop;
YImageTop := Height - CornerTop;
{ For speed, we only apply AlphaBegin/End once.
In case of GLImageUseShaders, this optimization is only useful
for acFullRange, and it would actually break the acSimpleYesNo case. }
{$ifdef GLImageUseShaders}
OptimizeAlpha := Alpha = acFullRange;
if OptimizeAlpha then
{$endif}
begin
AlphaBegin;
OldAlpha := Alpha;
Alpha := acNone;
end;
{ 4 corners }
Draw(XScreenLeft, YScreenBottom, CornerLeft, CornerBottom,
XImageLeft, YImageBottom, CornerLeft, CornerBottom);
Draw(XScreenRight, YScreenBottom, CornerRight, CornerBottom,
XImageRight, YImageBottom, CornerRight, CornerBottom);
Draw(XScreenRight, YScreenTop, CornerRight, CornerTop,
XImageRight, YImageTop, CornerRight, CornerTop);
Draw(XScreenLeft, YScreenTop, CornerLeft, CornerTop,
XImageLeft, YImageTop, CornerLeft, CornerTop);
{ 4 sides }
HorizontalScreenSize := DrawWidth - CornerLeft - CornerRight;
HorizontalImageSize := Width - CornerLeft - CornerRight;
VerticalScreenSize := DrawHeight - CornerTop - CornerBottom;
VerticalImageSize := Height - CornerTop - CornerBottom;
Draw(XScreenLeft + CornerLeft, YScreenBottom, HorizontalScreenSize, CornerBottom,
XImageLeft + CornerLeft, YImageBottom, HorizontalImageSize, CornerBottom);
Draw(XScreenLeft + CornerLeft, YScreenTop, HorizontalScreenSize, CornerTop,
XImageLeft + CornerLeft, YImageTop, HorizontalImageSize, CornerTop);
Draw(XScreenLeft, YScreenBottom + CornerBottom, CornerLeft, VerticalScreenSize,
XImageLeft, YImageBottom + CornerBottom, CornerLeft, VerticalImageSize);
Draw(XScreenRight, YScreenBottom + CornerBottom, CornerRight, VerticalScreenSize,
XImageRight, YImageBottom + CornerBottom, CornerRight, VerticalImageSize);
{ inside }
if CornerLeft > 0 then EpsilonL := Epsilon else EpsilonL := 0;
if CornerTop > 0 then EpsilonT := Epsilon else EpsilonT := 0;
if CornerRight > 0 then EpsilonR := Epsilon else EpsilonR := 0;
if CornerBottom > 0 then EpsilonB := Epsilon else EpsilonB := 0;
Draw(X + CornerLeft , Y + CornerBottom , HorizontalScreenSize, VerticalScreenSize,
CornerLeft + EpsilonL, CornerBottom + EpsilonB, HorizontalImageSize - (EpsilonL+EpsilonR), VerticalImageSize - (EpsilonT+EpsilonB));
{$ifdef GLImageUseShaders}
if OptimizeAlpha then
{$endif}
begin
Alpha := OldAlpha;
AlphaEnd;
end;
end;
procedure TGLImage.Draw3x3(const X, Y, DrawWidth, DrawHeight: Integer;
const Corner: TVector4Integer);
begin
Draw3x3(X, Y, DrawWidth, DrawHeight,
Corner[0], Corner[1], Corner[2], Corner[3]);
end;
procedure TGLImage.Draw3x3(const ScreenRectangle: TRectangle;
const Corner: TVector4Integer);
begin
Draw3x3(ScreenRectangle.Left, ScreenRectangle.Bottom,
ScreenRectangle.Width, ScreenRectangle.Height,
Corner[0], Corner[1], Corner[2], Corner[3]);
end;
procedure TGLImage.Draw3x1(const X, Y, DrawWidth, DrawHeight: Integer;
const SideRight, SideLeft: Integer);
var
XScreenLeft, XScreenRight,
HorizontalScreenSize: Integer;
XImageLeft, XImageRight,
HorizontalImageSize: Single;
OldAlpha: TAlphaChannel;
{$ifdef GLImageUseShaders}
OptimizeAlpha: boolean;
{$endif}
EpsilonR, EpsilonL: Single;
const
{ We tweak texture coordinates a little, to avoid bilinear filtering
that would cause border colors to "bleed" over the texture inside.
Something minimally > 0.5 is necessary. }
Epsilon = 0.51;
begin
if not ( (SideLeft + SideRight < Width) and
(SideLeft + SideRight < DrawWidth) ) then
begin
if Log and not IgnoreTooLargeCorners then
WritelnLog('Draw3x1', 'Image sides are too large to draw it: sides are %d %d, image width is %d, draw area width is %d',
[SideRight, SideLeft,
Width,
DrawWidth]);
Exit;
end;
XScreenLeft := X;
XImageLeft := 0;
XScreenRight := X + DrawWidth - SideRight;
XImageRight := Width - SideRight;
{ For speed, we only apply AlphaBegin/End once.
In case of GLImageUseShaders, this optimization is only useful
for acFullRange, and it would actually break the acSimpleYesNo case. }
{$ifdef GLImageUseShaders}
OptimizeAlpha := Alpha = acFullRange;
if OptimizeAlpha then
{$endif}
begin
AlphaBegin;
OldAlpha := Alpha;
Alpha := acNone;
end;
{ 2 sides }
HorizontalScreenSize := DrawWidth - SideLeft - SideRight;
HorizontalImageSize := Width - SideLeft - SideRight;
Draw(XScreenLeft, Y, SideLeft, DrawHeight,
XImageLeft, 0, SideLeft, Height);
Draw(XScreenRight, Y, SideRight, DrawHeight,
XImageRight, 0, SideRight, Height);
{ inside }
if SideLeft > 0 then EpsilonL := Epsilon else EpsilonL := 0;
if SideRight > 0 then EpsilonR := Epsilon else EpsilonR := 0;
Draw(X + SideLeft , Y, HorizontalScreenSize, DrawHeight,
SideLeft + EpsilonL, 0, HorizontalImageSize - (EpsilonL+EpsilonR), Height);
{$ifdef GLImageUseShaders}
if OptimizeAlpha then
{$endif}
begin
Alpha := OldAlpha;
AlphaEnd;
end;
end;
procedure TGLImage.Draw3x1(const X, Y, DrawWidth, DrawHeight: Integer;
const Side: TVector2Integer);
begin
Draw3x1(X, Y, DrawWidth, DrawHeight,
Side[0], Side[1]);
end;
procedure TGLImage.Draw3x1(const ScreenRectangle: TRectangle;
const Side: TVector2Integer);
begin
Draw3x1(ScreenRectangle.Left, ScreenRectangle.Bottom,
ScreenRectangle.Width, ScreenRectangle.Height,
Side[0], Side[1]);
end;
function TGLImage.CurrentFilter: TTextureFilter;
begin
if ScalingPossible then
begin
Result.Minification := minLinear;
Result.Magnification := magLinear;
end else
begin
Result.Minification := minNearest;
Result.Magnification := magNearest;
end;
end;
procedure TGLImage.UpdateScalingPossible(const NeedToBind: boolean);
begin
if NeedToBind then
glBindTexture(GL_TEXTURE_2D, Texture);
SetTextureFilter(GL_TEXTURE_2D, CurrentFilter);
end;
procedure TGLImage.SetScalingPossible(const Value: boolean);
begin
if FScalingPossible <> Value then
begin
FScalingPossible := Value;
UpdateScalingPossible(true);
end;
end;
function TGLImage.Rect: TRectangle;
begin
Result := Rectangle(0, 0, Width, Height);
end;
procedure ImageDraw(const Image: TCastleImage);
var
GLImage: TGLImage;
begin
GLImage := TGLImage.Create(Image);
try
GLImage.Draw(0, 0);
finally FreeAndNil(GLImage) end;
end;
{$endif read_implementation}
|