Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTO] : updating jsbinding automatically #37

Merged
merged 1 commit into from
Mar 5, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
221 changes: 221 additions & 0 deletions frameworks/js-bindings/bindings/auto/api/jsb_cocos2dx_auto_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -6410,6 +6410,217 @@ create : function (

};

/**
* @class Configuration
*/
cc.Configuration = {

/**
* @method checkForGLExtension
* @param {String} arg0
* @return {bool}
*/
checkForGLExtension : function (
str
)
{
return false;
},

/**
* @method setValue
* @param {String} arg0
* @param {cc.Value} arg1
*/
setValue : function (
str,
value
)
{
},

/**
* @method supportsS3TC
* @return {bool}
*/
supportsS3TC : function (
)
{
return false;
},

/**
* @method supportsPVRTC
* @return {bool}
*/
supportsPVRTC : function (
)
{
return false;
},

/**
* @method supportsShareableVAO
* @return {bool}
*/
supportsShareableVAO : function (
)
{
return false;
},

/**
* @method getInfo
* @return {String}
*/
getInfo : function (
)
{
return ;
},

/**
* @method init
* @return {bool}
*/
init : function (
)
{
return false;
},

/**
* @method getMaxTextureUnits
* @return {int}
*/
getMaxTextureUnits : function (
)
{
return 0;
},

/**
* @method supportsNPOT
* @return {bool}
*/
supportsNPOT : function (
)
{
return false;
},

/**
* @method getMaxModelviewStackDepth
* @return {int}
*/
getMaxModelviewStackDepth : function (
)
{
return 0;
},

/**
* @method supportsDiscardFramebuffer
* @return {bool}
*/
supportsDiscardFramebuffer : function (
)
{
return false;
},

/**
* @method supportsATITC
* @return {bool}
*/
supportsATITC : function (
)
{
return false;
},

/**
* @method gatherGPUInfo
*/
gatherGPUInfo : function (
)
{
},

/**
* @method supportsETC
* @return {bool}
*/
supportsETC : function (
)
{
return false;
},

/**
* @method loadConfigFile
* @param {String} arg0
*/
loadConfigFile : function (
str
)
{
},

/**
* @method getValue
* @param {String} arg0
* @param {cc.Value} arg1
* @return {cc.Value}
*/
getValue : function (
str,
value
)
{
return cc.Value;
},

/**
* @method getMaxTextureSize
* @return {int}
*/
getMaxTextureSize : function (
)
{
return 0;
},

/**
* @method supportsBGRA8888
* @return {bool}
*/
supportsBGRA8888 : function (
)
{
return false;
},

/**
* @method destroyInstance
*/
destroyInstance : function (
)
{
},

/**
* @method getInstance
* @return {cc.Configuration}
*/
getInstance : function (
)
{
return cc.Configuration;
},

};

/**
* @class LabelAtlas
*/
Expand Down Expand Up @@ -6728,6 +6939,16 @@ startAnimation : function (
{
},

/**
* @method getOpenGLView
* @return {cc.GLView}
*/
getOpenGLView : function (
)
{
return cc.GLView;
},

/**
* @method getRunningScene
* @return {cc.Scene}
Expand Down
Loading