Exemplo n.º 1
0
int main()
{
	int Error(0);

	Error += test_texture3d_size();
	Error += test_texture3d_query();
	Error += test_texture3d_clear();
	Error += test_texture3d_access();

	return Error;
}
Exemplo n.º 2
0
int main()
{
    int Error(0);

    Error += test_alloc();
    Error += test_texture3d_size();
    Error += test_texture3d_query();
    Error += test_texture3d_clear();
    Error += test_texture3d_access();
    Error += load_store::test();
    Error += clear::test();

    return Error;
}