aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/viewer/sk_app/android/RasterWindowContext_android.h
blob: 913b06c9ddd71c5fad2594222968b80c7ee2bc5c (plain)
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

/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#ifndef RasterWindowContext_android_DEFINED
#define RasterWindowContext_android_DEFINED

#include <android/native_window_jni.h>

#include "../RasterWindowContext.h"

namespace sk_app {

class RasterWindowContext_android : public RasterWindowContext {
public:
    friend RasterWindowContext* RasterWindowContext::Create(
            void* platformData, const DisplayParams&);

    sk_sp<SkSurface> getBackbufferSurface() override;
    void swapBuffers() override;

    bool isValid() override { return SkToBool(fNativeWindow); }
    void resize(uint32_t w, uint32_t h) override {
        SkDEBUGFAIL("Resize is currently unsupported.");
    }
    void setDisplayParams(const DisplayParams& params) override {
        SkDEBUGFAIL("setDisplayParams is currently unsupported.");
    }

private:
    RasterWindowContext_android(void* platformData, const DisplayParams& params);
    sk_sp<SkSurface> fBackbufferSurface = nullptr;
    ANativeWindow* fNativeWindow = nullptr;
    ANativeWindow_Buffer fBuffer;
    ARect fBounds;
};

}   // namespace sk_app

#endif