mirror of https://github.com/axmolengine/axmol.git
29 lines
494 B
C++
29 lines
494 B
C++
//
|
|
// PerformanceRendererTest.h
|
|
// cocos2d_samples
|
|
//
|
|
// Created by Huabing on 1/10/14.
|
|
//
|
|
//
|
|
|
|
#ifndef __PERFORMANCE_RENDERER_TEST_H__
|
|
#define __PERFORMANCE_RENDERER_TEST_H__
|
|
|
|
#include "PerformanceTest.h"
|
|
|
|
class RenderTestLayer : public PerformBasicLayer
|
|
{
|
|
|
|
public:
|
|
RenderTestLayer();
|
|
virtual ~RenderTestLayer();
|
|
|
|
virtual void onEnter() override;
|
|
virtual void showCurrentTest() override;
|
|
public:
|
|
static cocos2d::Scene* scene();
|
|
};
|
|
|
|
void runRendererTest();
|
|
#endif
|