mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-30 02:50:05 +00:00
removed file with wrong case
This commit is contained in:
parent
6b3d7fc02a
commit
3a33b4bf49
1 changed files with 5 additions and 5 deletions
|
|
@ -27,8 +27,6 @@ public:
|
|||
|
||||
~MainContentComponent()
|
||||
{
|
||||
// (Your class must call this in its destructor to stop the
|
||||
// rendering callbacks happening after your class has been deleted)
|
||||
shutdownOpenGL();
|
||||
}
|
||||
|
||||
|
|
@ -42,13 +40,15 @@ public:
|
|||
|
||||
void render() override
|
||||
{
|
||||
OpenGLHelpers::clear (Colours::lightblue);
|
||||
}
|
||||
|
||||
void paint (Graphics& g) override
|
||||
{
|
||||
// You can add normal 2D drawing code here, which will be
|
||||
// drawn over the GL content.
|
||||
// (Our component is opaque, so we must completely fill the background with a solid colour)
|
||||
g.fillAll (Colours::black);
|
||||
|
||||
|
||||
// You can add your drawing code here!
|
||||
}
|
||||
|
||||
void resized() override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue