aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrCustomStage.cpp
blob: bea07cfab451f1c96f80e9be0ec8cac12ef8373c (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
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
/*
 * Copyright 2012 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "GrContext.h"
#include "GrCustomStage.h"
#include "GrMemoryPool.h"
#include "SkString.h"
#include "SkTLS.h"

SK_DEFINE_INST_COUNT(GrCustomStage)

class GrCustomStage_Globals {
public:
    static GrMemoryPool* GetTLS() {
        return (GrMemoryPool*)SkTLS::Get(CreateTLS, DeleteTLS);
    }

private:
    static void* CreateTLS() {
        return SkNEW_ARGS(GrMemoryPool, (4096, 4096));
    }

    static void DeleteTLS(void* pool) {
        SkDELETE(reinterpret_cast<GrMemoryPool*>(pool));
    }
};

int32_t GrProgramStageFactory::fCurrStageClassID =
                                    GrProgramStageFactory::kIllegalStageClassID;

GrTextureAccess::GrTextureAccess(const GrTexture* texture, const SkString& swizzle)
    : fTexture(texture) {
    GrAssert(swizzle.size() <= 4);
    for (unsigned int offset = 0; offset < swizzle.size(); ++offset) {
        fSwizzle[offset] = swizzle[offset];
    }
    if (swizzle.size() < 4) {
      fSwizzle[swizzle.size()] = 0;
    }
}

GrCustomStage::GrCustomStage() {

}

GrCustomStage::~GrCustomStage() {

}

bool GrCustomStage::isOpaque(bool inputTextureIsOpaque) const {
    return false;
}

bool GrCustomStage::isEqual(const GrCustomStage& s) const {
    if (this->numTextures() != s.numTextures()) {
        return false;
    }
    for (unsigned int i = 0; i < this->numTextures(); ++i) {
        if (this->texture(i) != s.texture(i)) {
            return false;
        }
    }
    return true;
}

unsigned int GrCustomStage::numTextures() const {
    return 0;
}

GrTexture* GrCustomStage::texture(unsigned int index) const {
    return NULL;
}

const GrTextureAccess* GrCustomStage::textureAccess(unsigned int index) const {
    return NULL;
}

void * GrCustomStage::operator new(size_t size) {
    return GrCustomStage_Globals::GetTLS()->allocate(size);
}

void GrCustomStage::operator delete(void* target) {
    GrCustomStage_Globals::GetTLS()->release(target);
}