skia2/tools/sk_app/unix/RasterWindowContext_unix.cpp
Mike Klein c0bd9f9fe5 rewrite includes to not need so much -Ifoo
Current strategy: everything from the top

Things to look at first are the manual changes:

   - added tools/rewrite_includes.py
   - removed -Idirectives from BUILD.gn
   - various compile.sh simplifications
   - tweak tools/embed_resources.py
   - update gn/find_headers.py to write paths from the top
   - update gn/gn_to_bp.py SkUserConfig.h layout
     so that #include "include/config/SkUserConfig.h" always
     gets the header we want.

No-Presubmit: true
Change-Id: I73a4b181654e0e38d229bc456c0d0854bae3363e
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209706
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Hal Canary <halcanary@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
2019-04-24 16:27:11 +00:00

105 lines
3.2 KiB
C++

/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/core/SkSurface.h"
#include "tools/sk_app/RasterWindowContext.h"
#include "tools/sk_app/unix/WindowContextFactory_unix.h"
using sk_app::RasterWindowContext;
using sk_app::DisplayParams;
namespace {
class RasterWindowContext_xlib : public RasterWindowContext {
public:
RasterWindowContext_xlib(Display*, XWindow, int width, int height, const DisplayParams&);
sk_sp<SkSurface> getBackbufferSurface() override;
void swapBuffers() override;
bool isValid() override { return SkToBool(fWindow); }
void resize(int w, int h) override;
void setDisplayParams(const DisplayParams& params) override;
protected:
sk_sp<SkSurface> fBackbufferSurface;
Display* fDisplay;
XWindow fWindow;
GC fGC;
typedef RasterWindowContext INHERITED;
};
RasterWindowContext_xlib::RasterWindowContext_xlib(Display* display, XWindow window, int width,
int height, const DisplayParams& params)
: INHERITED(params)
, fDisplay(display)
, fWindow(window) {
fGC = XCreateGC(fDisplay, fWindow, 0, nullptr);
this->resize(width, height);
fWidth = width;
fHeight = height;
}
void RasterWindowContext_xlib::setDisplayParams(const DisplayParams& params) {
fDisplayParams = params;
XWindowAttributes attrs;
XGetWindowAttributes(fDisplay, fWindow, &attrs);
this->resize(attrs.width, attrs.height);
}
void RasterWindowContext_xlib::resize(int w, int h) {
SkImageInfo info = SkImageInfo::Make(w, h, fDisplayParams.fColorType, kPremul_SkAlphaType,
fDisplayParams.fColorSpace);
fBackbufferSurface = SkSurface::MakeRaster(info, &fDisplayParams.fSurfaceProps);
}
sk_sp<SkSurface> RasterWindowContext_xlib::getBackbufferSurface() { return fBackbufferSurface; }
void RasterWindowContext_xlib::swapBuffers() {
SkPixmap pm;
if (!fBackbufferSurface->peekPixels(&pm)) {
return;
}
int bitsPerPixel = pm.info().bytesPerPixel() * 8;
XImage image;
memset(&image, 0, sizeof(image));
image.width = pm.width();
image.height = pm.height();
image.format = ZPixmap;
image.data = (char*) pm.addr();
image.byte_order = LSBFirst;
image.bitmap_unit = bitsPerPixel;
image.bitmap_bit_order = LSBFirst;
image.bitmap_pad = bitsPerPixel;
image.depth = 24;
image.bytes_per_line = pm.rowBytes() - pm.width() * pm.info().bytesPerPixel();
image.bits_per_pixel = bitsPerPixel;
if (!XInitImage(&image)) {
return;
}
XPutImage(fDisplay, fWindow, fGC, &image, 0, 0, 0, 0, pm.width(), pm.height());
}
} // anonymous namespace
namespace sk_app {
namespace window_context_factory {
WindowContext* NewRasterForXlib(const XlibWindowInfo& info, const DisplayParams& params) {
WindowContext* ctx = new RasterWindowContext_xlib(info.fDisplay, info.fWindow, info.fWidth,
info.fHeight, params);
if (!ctx->isValid()) {
delete ctx;
ctx = nullptr;
}
return ctx;
}
} // namespace window_context_factory
} // namespace sk_app