예제 #1
0
파일: luaal.c 프로젝트: darkf/almixer
static int lua_alDisable(lua_State* lua_state)
{
	ALenum enum_parameter;
	enum_parameter = lua_tointeger(lua_state, 1);
	alDisable(enum_parameter);
	return 0;
}
예제 #2
0
파일: bind.cpp 프로젝트: Qard/jsgame
Handle<Value> ALDisableCallback(const Arguments& args) {
	//if less that nbr of formal parameters then do nothing
	if (args.Length() < 1)
		return v8::Undefined();
	
	//get arguments
	int arg0 = args[0]->IntegerValue();

	//make call
	alDisable((ALenum)arg0);
	
	return v8::Undefined();
}
예제 #3
0
static PyObject*
_context_disable (PyObject *self, PyObject *args)
{
    ALenum val;

    ASSERT_CONTEXT_IS_CURRENT(self, NULL);

    if (!IntFromObj (args, (int*) &val))
        return NULL;
    CLEAR_ALERROR_STATE ();
    alDisable (val);
    if (SetALErrorException (alGetError (), 0))
        return NULL;
    Py_RETURN_NONE;
}
예제 #4
0
value lime_al_disable (value capability) {

    alDisable (val_int (capability));
    return alloc_null ();

}
예제 #5
0
void al_disable( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[] ) {

	if (NULL == alDisable) mogl_glunsupported("alDisable");
	alDisable((ALenum)mxGetScalar(prhs[0]));

}
예제 #6
0
파일: openal.c 프로젝트: AmesianX/RosWine
ALvoid CDECL wine_alDisable(ALenum capability)
{
    alDisable(capability);
}
예제 #7
0
	void lime_al_disable (int capability) {
		
		alDisable (capability);
		
	}
JNIEXPORT void JNICALL Java_org_lwjgl_openal_AL10_nalDisable(JNIEnv *__env, jclass clazz, jint target, jlong __functionAddress) {
	alDisablePROC alDisable = (alDisablePROC)(intptr_t)__functionAddress;
	UNUSED_PARAMS(__env, clazz)
	alDisable(target);
}
예제 #9
0
파일: al.cpp 프로젝트: 2asoft/xray-16
//*****************************************************************************
// alDisable
//*****************************************************************************
//
ALAPI ALvoid ALAPIENTRY alDisable(ALenum capability)
{
    AL_VOID_FXN(alDisable(capability));
}