tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebCore / JSWebGLProgram.cpp
1 /*
2     This file is part of the WebKit open source project.
3     This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public License
16     along with this library; see the file COPYING.LIB.  If not, write to
17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19 */
20
21 #include "config.h"
22
23 #if ENABLE(WEBGL)
24
25 #include "JSWebGLProgram.h"
26
27 #include "WebGLProgram.h"
28 #include <wtf/GetPtr.h>
29
30 using namespace JSC;
31
32 namespace WebCore {
33
34 ASSERT_CLASS_FITS_IN_CELL(JSWebGLProgram);
35
36 /* Hash table */
37 #if ENABLE(JIT)
38 #define THUNK_GENERATOR(generator) , generator
39 #else
40 #define THUNK_GENERATOR(generator)
41 #endif
42 #if ENABLE(DFG_JIT)
43 #define INTRINSIC(intrinsic) , intrinsic
44 #else
45 #define INTRINSIC(intrinsic)
46 #endif
47
48 static const HashTableValue JSWebGLProgramTableValues[] =
49 {
50     { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsWebGLProgramConstructor), (intptr_t)0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) },
51     { 0, 0, 0, 0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) }
52 };
53
54 #undef THUNK_GENERATOR
55 static const HashTable JSWebGLProgramTable = { 2, 1, JSWebGLProgramTableValues, 0 };
56 /* Hash table for constructor */
57 #if ENABLE(JIT)
58 #define THUNK_GENERATOR(generator) , generator
59 #else
60 #define THUNK_GENERATOR(generator)
61 #endif
62 #if ENABLE(DFG_JIT)
63 #define INTRINSIC(intrinsic) , intrinsic
64 #else
65 #define INTRINSIC(intrinsic)
66 #endif
67
68 static const HashTableValue JSWebGLProgramConstructorTableValues[] =
69 {
70     { 0, 0, 0, 0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) }
71 };
72
73 #undef THUNK_GENERATOR
74 static const HashTable JSWebGLProgramConstructorTable = { 1, 0, JSWebGLProgramConstructorTableValues, 0 };
75 const ClassInfo JSWebGLProgramConstructor::s_info = { "WebGLProgramConstructor", &DOMConstructorObject::s_info, &JSWebGLProgramConstructorTable, 0, CREATE_METHOD_TABLE(JSWebGLProgramConstructor) };
76
77 JSWebGLProgramConstructor::JSWebGLProgramConstructor(Structure* structure, JSDOMGlobalObject* globalObject)
78     : DOMConstructorObject(structure, globalObject)
79 {
80 }
81
82 void JSWebGLProgramConstructor::finishCreation(ExecState* exec, JSDOMGlobalObject* globalObject)
83 {
84     Base::finishCreation(exec->globalData());
85     ASSERT(inherits(&s_info));
86     putDirect(exec->globalData(), exec->propertyNames().prototype, JSWebGLProgramPrototype::self(exec, globalObject), DontDelete | ReadOnly);
87 }
88
89 bool JSWebGLProgramConstructor::getOwnPropertySlot(JSCell* cell, ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
90 {
91     return getStaticValueSlot<JSWebGLProgramConstructor, JSDOMWrapper>(exec, &JSWebGLProgramConstructorTable, static_cast<JSWebGLProgramConstructor*>(cell), propertyName, slot);
92 }
93
94 bool JSWebGLProgramConstructor::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
95 {
96     return getStaticValueDescriptor<JSWebGLProgramConstructor, JSDOMWrapper>(exec, &JSWebGLProgramConstructorTable, static_cast<JSWebGLProgramConstructor*>(object), propertyName, descriptor);
97 }
98
99 /* Hash table for prototype */
100 #if ENABLE(JIT)
101 #define THUNK_GENERATOR(generator) , generator
102 #else
103 #define THUNK_GENERATOR(generator)
104 #endif
105 #if ENABLE(DFG_JIT)
106 #define INTRINSIC(intrinsic) , intrinsic
107 #else
108 #define INTRINSIC(intrinsic)
109 #endif
110
111 static const HashTableValue JSWebGLProgramPrototypeTableValues[] =
112 {
113     { 0, 0, 0, 0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) }
114 };
115
116 #undef THUNK_GENERATOR
117 static const HashTable JSWebGLProgramPrototypeTable = { 1, 0, JSWebGLProgramPrototypeTableValues, 0 };
118 const ClassInfo JSWebGLProgramPrototype::s_info = { "WebGLProgramPrototype", &JSC::JSNonFinalObject::s_info, &JSWebGLProgramPrototypeTable, 0, CREATE_METHOD_TABLE(JSWebGLProgramPrototype) };
119
120 JSObject* JSWebGLProgramPrototype::self(ExecState* exec, JSGlobalObject* globalObject)
121 {
122     return getDOMPrototype<JSWebGLProgram>(exec, globalObject);
123 }
124
125 const ClassInfo JSWebGLProgram::s_info = { "WebGLProgram", &JSDOMWrapper::s_info, &JSWebGLProgramTable, 0 , CREATE_METHOD_TABLE(JSWebGLProgram) };
126
127 JSWebGLProgram::JSWebGLProgram(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<WebGLProgram> impl)
128     : JSDOMWrapper(structure, globalObject)
129     , m_impl(impl.leakRef())
130 {
131 }
132
133 void JSWebGLProgram::finishCreation(JSGlobalData& globalData)
134 {
135     Base::finishCreation(globalData);
136     ASSERT(inherits(&s_info));
137 }
138
139 JSObject* JSWebGLProgram::createPrototype(ExecState* exec, JSGlobalObject* globalObject)
140 {
141     return JSWebGLProgramPrototype::create(exec->globalData(), globalObject, JSWebGLProgramPrototype::createStructure(globalObject->globalData(), globalObject, globalObject->objectPrototype()));
142 }
143
144 bool JSWebGLProgram::getOwnPropertySlot(JSCell* cell, ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
145 {
146     JSWebGLProgram* thisObject = jsCast<JSWebGLProgram*>(cell);
147     ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info);
148     return getStaticValueSlot<JSWebGLProgram, Base>(exec, &JSWebGLProgramTable, thisObject, propertyName, slot);
149 }
150
151 bool JSWebGLProgram::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
152 {
153     JSWebGLProgram* thisObject = jsCast<JSWebGLProgram*>(object);
154     ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info);
155     return getStaticValueDescriptor<JSWebGLProgram, Base>(exec, &JSWebGLProgramTable, thisObject, propertyName, descriptor);
156 }
157
158 JSValue jsWebGLProgramConstructor(ExecState* exec, JSValue slotBase, const Identifier&)
159 {
160     JSWebGLProgram* domObject = static_cast<JSWebGLProgram*>(asObject(slotBase));
161     return JSWebGLProgram::getConstructor(exec, domObject->globalObject());
162 }
163
164 JSValue JSWebGLProgram::getConstructor(ExecState* exec, JSGlobalObject* globalObject)
165 {
166     return getDOMConstructor<JSWebGLProgramConstructor>(exec, static_cast<JSDOMGlobalObject*>(globalObject));
167 }
168
169 static inline bool isObservable(JSWebGLProgram* jsWebGLProgram)
170 {
171     if (jsWebGLProgram->hasCustomProperties())
172         return true;
173     return false;
174 }
175
176 bool JSWebGLProgramOwner::isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown> handle, void*, SlotVisitor& visitor)
177 {
178     JSWebGLProgram* jsWebGLProgram = static_cast<JSWebGLProgram*>(handle.get().asCell());
179     if (!isObservable(jsWebGLProgram))
180         return false;
181     UNUSED_PARAM(visitor);
182     return false;
183 }
184
185 void JSWebGLProgramOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
186 {
187     JSWebGLProgram* jsWebGLProgram = static_cast<JSWebGLProgram*>(handle.get().asCell());
188     DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
189     uncacheWrapper(world, jsWebGLProgram->impl(), jsWebGLProgram);
190     jsWebGLProgram->releaseImpl();
191 }
192
193 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, WebGLProgram* impl)
194 {
195     return wrap<JSWebGLProgram>(exec, globalObject, impl);
196 }
197
198 WebGLProgram* toWebGLProgram(JSC::JSValue value)
199 {
200     return value.inherits(&JSWebGLProgram::s_info) ? static_cast<JSWebGLProgram*>(asObject(value))->impl() : 0;
201 }
202
203 }
204
205 #endif // ENABLE(WEBGL)