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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sal/config.h>
#include <string.h>
#include <com/sun/star/rendering/ColorComponentTag.hpp>
#include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/range/b2irange.hxx>
#include <tools/diagnose_ex.h>
#include "dx_graphicsprovider.hxx"
#include "dx_impltools.hxx"
#include "dx_surfacebitmap.hxx"
#include "dx_surfacegraphics.hxx"
using namespace ::com::sun::star;
namespace dxcanvas
{
namespace
{
// DXColorBuffer
struct DXColorBuffer : public canvas::IColorBuffer
{
public:
DXColorBuffer( const COMReference<surface_type>& rSurface,
const ::basegfx::B2IVector& rSize ) :
maSize(rSize),
mpSurface(rSurface)
{
}
// implementation of the 'IColorBuffer' interface
public:
virtual sal_uInt8* lock() const override;
virtual void unlock() const override;
virtual sal_uInt32 getWidth() const override;
virtual sal_uInt32 getHeight() const override;
virtual sal_uInt32 getStride() const override;
virtual Format getFormat() const override;
private:
::basegfx::B2IVector maSize;
mutable D3DLOCKED_RECT maLockedRect;
mutable COMReference<surface_type> mpSurface;
};
sal_uInt8* DXColorBuffer::lock() const
{
if(SUCCEEDED(mpSurface->LockRect(&maLockedRect,nullptr,D3DLOCK_NOSYSLOCK|D3DLOCK_READONLY)))
return static_cast<sal_uInt8 *>(maLockedRect.pBits);
return nullptr;
}
void DXColorBuffer::unlock() const
{
mpSurface->UnlockRect();
}
sal_uInt32 DXColorBuffer::getWidth() const
{
return maSize.getX();
}
sal_uInt32 DXColorBuffer::getHeight() const
{
return maSize.getY();
}
sal_uInt32 DXColorBuffer::getStride() const
{
return maLockedRect.Pitch;
}
canvas::IColorBuffer::Format DXColorBuffer::getFormat() const
{
return canvas::IColorBuffer::Format::X8R8G8B8;
}
// GDIColorBuffer
struct GDIColorBuffer : public canvas::IColorBuffer
{
public:
GDIColorBuffer( const BitmapSharedPtr& rSurface,
const ::basegfx::B2IVector& rSize ) :
maSize(rSize),
mpGDIPlusBitmap(rSurface)
{
}
// implementation of the 'IColorBuffer' interface
public:
virtual sal_uInt8* lock() const override;
virtual void unlock() const override;
virtual sal_uInt32 getWidth() const override;
virtual sal_uInt32 getHeight() const override;
virtual sal_uInt32 getStride() const override;
virtual Format getFormat() const override;
private:
::basegfx::B2IVector maSize;
mutable Gdiplus::BitmapData aBmpData;
BitmapSharedPtr mpGDIPlusBitmap;
};
sal_uInt8* GDIColorBuffer::lock() const
{
aBmpData.Width = maSize.getX();
aBmpData.Height = maSize.getY();
aBmpData.Stride = 4*aBmpData.Width;
aBmpData.PixelFormat = PixelFormat32bppARGB;
aBmpData.Scan0 = nullptr;
const Gdiplus::Rect aRect( 0,0,aBmpData.Width,aBmpData.Height );
if( Gdiplus::Ok != mpGDIPlusBitmap->LockBits( &aRect,
Gdiplus::ImageLockModeRead,
PixelFormat32bppARGB,
&aBmpData ) )
{
return nullptr;
}
return static_cast<sal_uInt8*>(aBmpData.Scan0);
}
void GDIColorBuffer::unlock() const
{
mpGDIPlusBitmap->UnlockBits( &aBmpData );
}
sal_uInt32 GDIColorBuffer::getWidth() const
{
return maSize.getX();
}
sal_uInt32 GDIColorBuffer::getHeight() const
{
return maSize.getY();
}
sal_uInt32 GDIColorBuffer::getStride() const
{
return aBmpData.Stride;
}
canvas::IColorBuffer::Format GDIColorBuffer::getFormat() const
{
return canvas::IColorBuffer::Format::A8R8G8B8;
}
}
// DXSurfaceBitmap::DXSurfaceBitmap
DXSurfaceBitmap::DXSurfaceBitmap( const ::basegfx::B2IVector& rSize,
const std::shared_ptr<canvas::ISurfaceProxyManager>& rMgr,
const IDXRenderModuleSharedPtr& rRenderModule,
bool bWithAlpha ) :
mpGdiPlusUser( GDIPlusUser::createInstance() ),
maSize(rSize),
mpRenderModule(rRenderModule),
mpSurfaceManager(rMgr),
mpSurfaceProxy(),
mpSurface(),
mpGDIPlusBitmap(),
mpGraphics(),
mpColorBuffer(),
mbIsSurfaceDirty(true),
mbAlpha(bWithAlpha)
{
init();
}
// DXSurfaceBitmap::getSize
::basegfx::B2IVector DXSurfaceBitmap::getSize() const
{
return maSize;
}
// DXSurfaceBitmap::init
void DXSurfaceBitmap::init()
{
// create container for pixel data
if(mbAlpha)
{
mpGDIPlusBitmap.reset(
new Gdiplus::Bitmap(
maSize.getX(),
maSize.getY(),
PixelFormat32bppARGB
));
mpGraphics.reset( tools::createGraphicsFromBitmap(mpGDIPlusBitmap) );
// create the colorbuffer object, which is basically a simple
// wrapper around the directx surface. the colorbuffer is the
// interface which is used by the surfaceproxy to support any
// kind of underlying structure for the pixel data container.
mpColorBuffer.reset(new GDIColorBuffer(mpGDIPlusBitmap,maSize));
}
else
{
mpSurface = mpRenderModule->createSystemMemorySurface(maSize);
// create the colorbuffer object, which is basically a simple
// wrapper around the directx surface. the colorbuffer is the
// interface which is used by the surfaceproxy to support any
// kind of underlying structure for the pixel data container.
mpColorBuffer.reset(new DXColorBuffer(mpSurface,maSize));
}
// create a (possibly hardware accelerated) mirror surface.
mpSurfaceProxy = mpSurfaceManager->createSurfaceProxy(mpColorBuffer);
}
// DXSurfaceBitmap::resize
bool DXSurfaceBitmap::resize( const ::basegfx::B2IVector& rSize )
{
if(maSize != rSize)
{
maSize = rSize;
init();
}
return true;
}
// DXSurfaceBitmap::clear
void DXSurfaceBitmap::clear()
{
GraphicsSharedPtr pGraphics(getGraphics());
Gdiplus::Color transColor(255,0,0,0);
pGraphics->SetCompositingMode( Gdiplus::CompositingModeSourceCopy );
pGraphics->Clear( transColor );
}
// DXSurfaceBitmap::hasAlpha
bool DXSurfaceBitmap::hasAlpha() const
{
return mbAlpha;
}
// DXSurfaceBitmap::getGraphics
GraphicsSharedPtr DXSurfaceBitmap::getGraphics()
{
// since clients will most probably draw directly
// to the GDI+ bitmap, we need to mark it as dirty
// to ensure that the corresponding dxsurface will
// be updated.
mbIsSurfaceDirty = true;
if(hasAlpha())
return mpGraphics;
else
return createSurfaceGraphics(mpSurface);
}
// DXSurfaceBitmap::getBitmap
BitmapSharedPtr DXSurfaceBitmap::getBitmap() const
{
if(hasAlpha())
return mpGDIPlusBitmap;
BitmapSharedPtr pResult;
D3DLOCKED_RECT aLockedRect;
if(SUCCEEDED(mpSurface->LockRect(&aLockedRect,nullptr,D3DLOCK_NOSYSLOCK|D3DLOCK_READONLY)))
{
// decide about the format we pass the gdi+, the directx surface is always
// 32bit, either with or without alpha component.
Gdiplus::PixelFormat nFormat = hasAlpha() ? PixelFormat32bppARGB : PixelFormat32bppRGB;
// construct a gdi+ bitmap from the raw pixel data.
pResult.reset(new Gdiplus::Bitmap( maSize.getX(),maSize.getY(),
aLockedRect.Pitch,
nFormat,
static_cast<BYTE *>(aLockedRect.pBits) ));
mpSurface->UnlockRect();
}
return pResult;
}
// DXSurfaceBitmap::draw
bool DXSurfaceBitmap::draw( double fAlpha,
const ::basegfx::B2DPoint& rPos,
const ::basegfx::B2DPolyPolygon& rClipPoly,
const ::basegfx::B2DHomMatrix& rTransform )
{
if( mbIsSurfaceDirty )
{
mpSurfaceProxy->setColorBufferDirty();
mbIsSurfaceDirty = false;
}
return mpSurfaceProxy->draw( fAlpha, rPos, rClipPoly, rTransform );
}
// DXSurfaceBitmap::draw
bool DXSurfaceBitmap::draw( double fAlpha,
const ::basegfx::B2DPoint& rPos,
const ::basegfx::B2DRange& rArea,
const ::basegfx::B2DHomMatrix& rTransform )
{
if( mbIsSurfaceDirty )
{
mpSurfaceProxy->setColorBufferDirty();
mbIsSurfaceDirty = false;
}
return mpSurfaceProxy->draw( fAlpha, rPos, rArea, rTransform );
}
// DXSurfaceBitmap::draw
bool DXSurfaceBitmap::draw( double fAlpha,
const ::basegfx::B2DPoint& rPos,
const ::basegfx::B2DHomMatrix& rTransform )
{
if( mbIsSurfaceDirty )
{
mpSurfaceProxy->setColorBufferDirty();
mbIsSurfaceDirty = false;
}
return mpSurfaceProxy->draw( fAlpha, rPos, rTransform );
}
// DXSurfaceBitmap::draw
bool DXSurfaceBitmap::draw( const ::basegfx::B2IRange& rArea )
{
if( mbIsSurfaceDirty )
{
mpSurfaceProxy->setColorBufferDirty();
mbIsSurfaceDirty = false;
}
const double fAlpha(1.0);
const ::basegfx::B2DHomMatrix aTransform;
const ::basegfx::B2DRange aIEEEArea( rArea );
return mpSurfaceProxy->draw(fAlpha,
::basegfx::B2DPoint(),
aIEEEArea,
aTransform);
}
// DXSurfaceBitmap::getData
uno::Sequence< sal_Int8 > DXSurfaceBitmap::getData( rendering::IntegerBitmapLayout& rBitmapLayout,
const geometry::IntegerRectangle2D& rect )
{
if(hasAlpha())
{
uno::Sequence< sal_Int8 > aRes( (rect.X2-rect.X1)*(rect.Y2-rect.Y1)*4 ); // TODO(F1): Be format-agnostic here
const Gdiplus::Rect aRect( tools::gdiPlusRectFromIntegerRectangle2D( rect ) );
Gdiplus::BitmapData aBmpData;
aBmpData.Width = rect.X2-rect.X1;
aBmpData.Height = rect.Y2-rect.Y1;
aBmpData.Stride = 4*aBmpData.Width;
aBmpData.PixelFormat = PixelFormat32bppARGB;
aBmpData.Scan0 = aRes.getArray();
// TODO(F1): Support more pixel formats natively
// read data from bitmap
if( Gdiplus::Ok != mpGDIPlusBitmap->LockBits( &aRect,
Gdiplus::ImageLockModeRead | Gdiplus::ImageLockModeUserInputBuf,
PixelFormat32bppARGB, // TODO(F1): Adapt to
// Graphics native
// format/change
// getMemoryLayout
&aBmpData ) )
{
// failed to lock, bail out
return uno::Sequence< sal_Int8 >();
}
mpGDIPlusBitmap->UnlockBits( &aBmpData );
return aRes;
}
else
{
sal_uInt32 nWidth = rect.X2-rect.X1;
sal_uInt32 nHeight = rect.Y2-rect.Y1;
uno::Sequence< sal_Int8 > aRes(nWidth*nHeight*4);
D3DLOCKED_RECT aLockedRect;
if(FAILED(mpSurface->LockRect(&aLockedRect,nullptr,D3DLOCK_NOSYSLOCK|D3DLOCK_READONLY)))
return uno::Sequence< sal_Int8 >();
D3DSURFACE_DESC aDesc;
if(FAILED(mpSurface->GetDesc(&aDesc)))
return uno::Sequence< sal_Int8 >();
assert(aDesc.Format == D3DFMT_A8R8G8B8 || aDesc.Format == D3DFMT_X8R8G8B8);
sal_uInt8 *pSrc = (static_cast<BYTE *>(aLockedRect.pBits)+(rect.Y1*aLockedRect.Pitch))+rect.X1;
sal_uInt8 *pDst = reinterpret_cast<sal_uInt8 *>(aRes.getArray());
sal_uInt32 nSegmentSizeInBytes = nWidth*4;
for(sal_uInt32 y=0; y<nHeight; ++y)
{
memcpy(pDst,pSrc,nSegmentSizeInBytes);
pDst += nSegmentSizeInBytes;
pSrc += aLockedRect.Pitch;
}
if(rBitmapLayout.ColorSpace->getComponentTags().getArray()[0] == rendering::ColorComponentTag::RGB_RED &&
rBitmapLayout.ColorSpace->getComponentTags().getArray()[2] == rendering::ColorComponentTag::RGB_BLUE)
{
pDst = reinterpret_cast<sal_uInt8 *>(aRes.getArray());
for(sal_uInt32 y=0; y<nHeight; ++y)
{
sal_uInt8* pPixel = pDst;
for(sal_uInt32 n = 0; n<nWidth; n++)
{
sal_uInt8 nB = pPixel[0];
pPixel[0] = pPixel[2];
pPixel[2] = nB;
pPixel += 4;
}
pDst += nSegmentSizeInBytes;
}
}
mpSurface->UnlockRect();
return aRes;
}
}
// DXSurfaceBitmap::setData
void DXSurfaceBitmap::setData( const uno::Sequence< sal_Int8 >& data,
const rendering::IntegerBitmapLayout& /*bitmapLayout*/,
const geometry::IntegerRectangle2D& rect )
{
if(hasAlpha())
{
const Gdiplus::Rect aRect( tools::gdiPlusRectFromIntegerRectangle2D( rect ) );
Gdiplus::BitmapData aBmpData;
aBmpData.Width = rect.X2-rect.X1;
aBmpData.Height = rect.Y2-rect.Y1;
aBmpData.Stride = 4*aBmpData.Width;
aBmpData.PixelFormat = PixelFormat32bppARGB;
aBmpData.Scan0 = const_cast<sal_Int8 *>(data.getConstArray());
// TODO(F1): Support more pixel formats natively
if( Gdiplus::Ok != mpGDIPlusBitmap->LockBits( &aRect,
Gdiplus::ImageLockModeWrite | Gdiplus::ImageLockModeUserInputBuf,
PixelFormat32bppARGB, // TODO: Adapt to
// Graphics native
// format/change
// getMemoryLayout
&aBmpData ) )
{
throw uno::RuntimeException();
}
// commit data to bitmap
mpGDIPlusBitmap->UnlockBits( &aBmpData );
}
else
{
sal_uInt32 nWidth = rect.X2-rect.X1;
sal_uInt32 nHeight = rect.Y2-rect.Y1;
// lock the directx surface to receive the pointer to the surface memory.
D3DLOCKED_RECT aLockedRect;
if(FAILED(mpSurface->LockRect(&aLockedRect,nullptr,D3DLOCK_NOSYSLOCK|D3DLOCK_READONLY)))
throw uno::RuntimeException();
sal_uInt8 const *pSrc = reinterpret_cast<sal_uInt8 const *>(data.getConstArray());
sal_uInt8 *pDst = (static_cast<BYTE *>(aLockedRect.pBits)+(rect.Y1*aLockedRect.Pitch))+rect.X1;
sal_uInt32 nSegmentSizeInBytes = nWidth<<4;
for(sal_uInt32 y=0; y<nHeight; ++y)
{
memcpy(pDst,pSrc,nSegmentSizeInBytes);
pSrc += nSegmentSizeInBytes;
pDst += aLockedRect.Pitch;
}
mpSurface->UnlockRect();
}
mbIsSurfaceDirty = true;
}
// DXSurfaceBitmap::setPixel
void DXSurfaceBitmap::setPixel( const uno::Sequence< sal_Int8 >& color,
const rendering::IntegerBitmapLayout& /*bitmapLayout*/,
const geometry::IntegerPoint2D& pos )
{
if(hasAlpha())
{
const geometry::IntegerSize2D aSize( maSize.getX(),maSize.getY() );
ENSURE_ARG_OR_THROW( pos.X >= 0 && pos.X < aSize.Width,
"CanvasHelper::setPixel: X coordinate out of bounds" );
ENSURE_ARG_OR_THROW( pos.Y >= 0 && pos.Y < aSize.Height,
"CanvasHelper::setPixel: Y coordinate out of bounds" );
ENSURE_ARG_OR_THROW( color.getLength() > 3,
"CanvasHelper::setPixel: not enough color components" );
if( Gdiplus::Ok != mpGDIPlusBitmap->SetPixel( pos.X, pos.Y,
Gdiplus::Color( tools::sequenceToArgb( color ))))
{
throw uno::RuntimeException();
}
}
else
{
ENSURE_ARG_OR_THROW( pos.X >= 0 && pos.X < maSize.getX(),
"CanvasHelper::setPixel: X coordinate out of bounds" );
ENSURE_ARG_OR_THROW( pos.Y >= 0 && pos.Y < maSize.getY(),
"CanvasHelper::setPixel: Y coordinate out of bounds" );
ENSURE_ARG_OR_THROW( color.getLength() > 3,
"CanvasHelper::setPixel: not enough color components" );
Gdiplus::Color aColor(tools::sequenceToArgb(color));
// lock the directx surface to receive the pointer to the surface memory.
D3DLOCKED_RECT aLockedRect;
if(FAILED(mpSurface->LockRect(&aLockedRect,nullptr,D3DLOCK_NOSYSLOCK|D3DLOCK_READONLY)))
throw uno::RuntimeException();
sal_uInt32 *pDst = reinterpret_cast<sal_uInt32 *>((static_cast<BYTE *>(aLockedRect.pBits)+(pos.Y*aLockedRect.Pitch))+pos.X);
*pDst = aColor.GetValue();
mpSurface->UnlockRect();
}
mbIsSurfaceDirty = true;
}
// DXSurfaceBitmap::getPixel
uno::Sequence< sal_Int8 > DXSurfaceBitmap::getPixel( rendering::IntegerBitmapLayout& /*bitmapLayout*/,
const geometry::IntegerPoint2D& pos )
{
if(hasAlpha())
{
const geometry::IntegerSize2D aSize( maSize.getX(),maSize.getY() );
ENSURE_ARG_OR_THROW( pos.X >= 0 && pos.X < aSize.Width,
"CanvasHelper::getPixel: X coordinate out of bounds" );
ENSURE_ARG_OR_THROW( pos.Y >= 0 && pos.Y < aSize.Height,
"CanvasHelper::getPixel: Y coordinate out of bounds" );
Gdiplus::Color aColor;
if( Gdiplus::Ok != mpGDIPlusBitmap->GetPixel( pos.X, pos.Y, &aColor ) )
return uno::Sequence< sal_Int8 >();
return tools::argbToIntSequence(aColor.GetValue());
}
else
{
ENSURE_ARG_OR_THROW( pos.X >= 0 && pos.X < maSize.getX(),
"CanvasHelper::getPixel: X coordinate out of bounds" );
ENSURE_ARG_OR_THROW( pos.Y >= 0 && pos.Y < maSize.getY(),
"CanvasHelper::getPixel: Y coordinate out of bounds" );
// lock the directx surface to receive the pointer to the surface memory.
D3DLOCKED_RECT aLockedRect;
if(FAILED(mpSurface->LockRect(&aLockedRect,nullptr,D3DLOCK_NOSYSLOCK|D3DLOCK_READONLY)))
throw uno::RuntimeException();
sal_uInt32 *pDst = reinterpret_cast<sal_uInt32 *>((static_cast<BYTE *>(aLockedRect.pBits)+(pos.Y*aLockedRect.Pitch))+pos.X);
Gdiplus::Color aColor(*pDst);
mpSurface->UnlockRect();
return tools::argbToIntSequence(aColor.GetValue());
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|