aboutsummaryrefslogtreecommitdiff
path: root/include/gpu/ShaderErrorHandler.h
blob: 8960da5c5a212b817f9e782ba04cfb5ed345ab8c (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
/*
 * Copyright 2021 Google LLC
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef skgpu_ShaderErrorHandler_DEFINED
#define skgpu_ShaderErrorHandler_DEFINED

#include "include/core/SkTypes.h"

namespace skgpu {
/**
 * Abstract class to report errors when compiling shaders.
 */
class SK_API ShaderErrorHandler {
public:
    virtual ~ShaderErrorHandler() = default;

    virtual void compileError(const char* shader, const char* errors) = 0;

protected:
    ShaderErrorHandler() = default;
    ShaderErrorHandler(const ShaderErrorHandler&) = delete;
    ShaderErrorHandler& operator=(const ShaderErrorHandler&) = delete;
};

/**
 * Used when no error handler is set. Will report failures via SkDebugf and asserts.
 */
ShaderErrorHandler* DefaultShaderErrorHandler();

}  // namespace skgpu

#endif // skgpu_ShaderErrorHandler_DEFINED