Ion
|
A CubeMapTexture object represents the image data and mipmaps associated with the six faces of a cube map. More...
#include "cubemaptexture.h"
Public Types | |
enum | Changes { kNegativeXSubImageChanged = TextureBase::kNumChanges, kNegativeYSubImageChanged, kNegativeZSubImageChanged, kPositiveXSubImageChanged, kPositiveYSubImageChanged, kPositiveZSubImageChanged, kNegativeXMipmapChanged, kNegativeYMipmapChanged = kNegativeXMipmapChanged + kMipmapSlotCount, kNegativeZMipmapChanged = kNegativeYMipmapChanged + kMipmapSlotCount, kPositiveXMipmapChanged = kNegativeZMipmapChanged + kMipmapSlotCount, kPositiveYMipmapChanged = kPositiveXMipmapChanged + kMipmapSlotCount, kPositiveZMipmapChanged = kPositiveYMipmapChanged + kMipmapSlotCount, kNumChanges = kPositiveZMipmapChanged + kMipmapSlotCount } |
Changes that affect this resource. More... | |
enum | CubeFace { kNegativeX, kNegativeY, kNegativeZ, kPositiveX, kPositiveY, kPositiveZ } |
The names of faces of the cube map. More... | |
enum | Swizzle { kRed, kGreen, kBlue, kAlpha } |
enum | TextureType { kCubeMapTexture, kTexture } |
enum | BaseChanges { kLabelChanged, kResourceChanged, kNumBaseChanges } |
All ResourceHolders derived from this should start their own change enums from kNumBaseChanges. More... | |
Public Member Functions | |
CubeMapTexture () | |
This is because we cannot yet use C++11 initializer lists. More... | |
void | SetImage (CubeFace face, size_t level, const ImagePtr &image) |
See comments in TextureBase::Face. More... | |
bool | HasImage (CubeFace face, size_t level) const |
const ImagePtr | GetImage (CubeFace face, size_t level) const |
size_t | GetImageCount (CubeFace face) const |
void | SetSubImage (CubeFace face, size_t level, const math::Point2ui offset, const ImagePtr &image) |
void | SetSubImage (CubeFace face, size_t level, const math::Point3ui offset, const ImagePtr &image) |
const base::AllocVector < SubImage > & | GetSubImages (CubeFace face) const |
void | ClearSubImages (CubeFace face) const |
void | SetSampler (const SamplerPtr &sampler) |
Sets/returns the Sampler to use for this. This is NULL by default. More... | |
const SamplerPtr & | GetSampler () const |
void | SetImmutableImage (const ImagePtr &image, size_t levels) |
Sets this texture to be fully allocated and made immutable by OpenGL, in the sense that it cannot change size or its number of mipmap levels. More... | |
const ImagePtr & | GetImmutableImage () const |
size_t | GetImmutableLevels () const |
Returns the number of immutable mipmap levels used by this texture. More... | |
void | SetBaseLevel (int level) |
Sets/returns the index of the lowest mipmap level to use when rendering. More... | |
int | GetBaseLevel () const |
void | SetMaxLevel (int level) |
Sets/returns the index of the highest mipmap level to use when rendering. More... | |
int | GetMaxLevel () const |
void | SetSwizzleRed (Swizzle r) |
Sets/returns the color component to use when the color channels of a texture are used in a shader. More... | |
Swizzle | GetSwizzleRed () const |
void | SetSwizzleGreen (Swizzle g) |
Swizzle | GetSwizzleGreen () const |
void | SetSwizzleBlue (Swizzle b) |
Swizzle | GetSwizzleBlue () const |
void | SetSwizzleAlpha (Swizzle a) |
Swizzle | GetSwizzleAlpha () const |
void | SetSwizzles (Swizzle r, Swizzle g, Swizzle b, Swizzle a) |
Sets all swizzles at once. More... | |
TextureType | GetTextureType () const |
Returns what type of texture that this is. More... | |
void | SetMultisampling (int samples, bool fixed_sample_locations) |
Enables/disables and sets parameters for texture multisampling. More... | |
int | GetMultisampleSamples () const |
bool | IsMultisampleFixedSampleLocations () const |
void | SetResource (size_t index, ResourceKey key, ResourceBase *resource) const |
Sets the resource at the passed index and key. More... | |
ResourceBase * | GetResource (size_t index, ResourceKey key) const |
Returns the Resource at the given index and key, or NULL if no resource was previously set at that location. More... | |
int | GetResourceCount () const |
Returns the number of resources that this holder holds. More... | |
size_t | GetGpuMemoryUsed () const |
Returns the total amount of GPU memory used by this Holder's resource. More... | |
const std::string & | GetLabel () const |
Returns/sets the label of this. More... | |
void | SetLabel (const std::string &label) |
void | AddReceiver (Notifier *receiver) |
Adds a Notifier to be notified. More... | |
void | RemoveReceiver (Notifier *receiver) |
Removes a Notifier to be notified. More... | |
size_t | GetReceiverCount () const |
Returns the number of Notifiers that will be notified. More... | |
const AllocatorPtr & | GetAllocator () const |
Returns the Allocator that was used for the instance. More... | |
const AllocatorPtr & | GetNonNullAllocator () const |
Return our allocator, or the default allocator if the instance was declared on the stack. More... | |
const AllocatorPtr & | GetAllocatorForLifetime (AllocationLifetime lifetime) const |
Convenience function that returns the Allocator to use to allocate an object with a specific lifetime. More... | |
void * | operator new (size_t size) |
The standard no-parameter new operator uses the default Allocator. More... | |
void * | operator new (size_t size, AllocationLifetime lifetime) |
This overloaded version of the new operator uses the AllocationManager's default Allocator for the specified lifetime. More... | |
void * | operator new (size_t size, const AllocatorPtr &allocator) |
This overloaded version of the new operator takes the Allocator to use directly as a parameter. More... | |
void * | operator new (size_t size, const AllocatorPtr &allocator, void *ptr) |
Special operator new for using placement new with Allocatables. More... | |
void * | operator new (size_t size, void *ptr) |
The placement new operator is defined conventionally. More... | |
void | operator delete (void *ptr) |
Define the delete operator to use specialized functions dealing with an Allocator. More... | |
void | operator delete (void *ptr, AllocationLifetime lifetime) |
Windows requires these (or it issues C4291 warnings). More... | |
void | operator delete (void *ptr, const AllocatorPtr &allocator) |
void | operator delete (void *ptr, void *ptr2) |
The placement delete operator does nothing, as usual. More... | |
int | GetRefCount () const |
GetRefCount() is part of the interface necessary for SharedPtr. More... | |
Protected Types | |
typedef WeakReferentPtr< Notifier > | NotifierPtr |
typedef AllocVector< NotifierPtr > | NotifierPtrVector |
Protected Member Functions | |
~CubeMapTexture () override | |
The destructor is protected because all base::Referent classes must have protected or private destructors. More... | |
void | OnChanged (int bit) const |
Forwards OnChanged to all resources. More... | |
const NotifierPtrVector & | GetReceivers () const |
Returns the set of Notifiers that will be notified. More... | |
void | Notify () const |
Notifies all contained Notifiers by calling their OnNotify(). More... | |
A CubeMapTexture object represents the image data and mipmaps associated with the six faces of a cube map.
Definition at line 28 of file cubemaptexture.h.
|
protectedinherited |
Definition at line 49 of file notifier.h.
|
protectedinherited |
Definition at line 50 of file notifier.h.
|
inherited |
All ResourceHolders derived from this should start their own change enums from kNumBaseChanges.
Enumerator | |
---|---|
kLabelChanged | |
kResourceChanged | |
kNumBaseChanges |
Definition at line 56 of file resourceholder.h.
Changes that affect this resource.
Definition at line 31 of file cubemaptexture.h.
The names of faces of the cube map.
Enumerator | |
---|---|
kNegativeX | |
kNegativeY | |
kNegativeZ | |
kPositiveX | |
kPositiveY | |
kPositiveZ |
Definition at line 49 of file cubemaptexture.h.
|
inherited |
|
inherited |
ion::gfx::CubeMapTexture::CubeMapTexture | ( | ) |
This is because we cannot yet use C++11 initializer lists.
Instead of using an array, we have an extra pointer where each index in the pointer is one of the faces.
Definition at line 27 of file cubemaptexture.cc.
References DCHECK_EQ.
|
overrideprotected |
The destructor is protected because all base::Referent classes must have protected or private destructors.
Definition at line 47 of file cubemaptexture.cc.
References image.
|
inherited |
Adds a Notifier to be notified.
Does nothing if the receiver is NULL or is already in the receiver vector.
Definition at line 25 of file notifier.cc.
|
inline |
Definition at line 89 of file cubemaptexture.h.
|
inlineinherited |
Returns the Allocator that was used for the instance.
This will be NULL if the instance was declared on the stack or created with normal placement new.
Definition at line 68 of file allocatable.h.
References allocator_.
Referenced by ion::base::DataContainer::CreateAndCopy(), ion::text::DynamicFontImage::FindContainingImageDataIndex(), and ion::text::DynamicFontImage::FindImageDataIndex().
|
inlineinherited |
Convenience function that returns the Allocator to use to allocate an object with a specific lifetime.
Definition at line 78 of file allocatable.h.
References ion::base::Allocator::GetAllocatorForLifetime().
Referenced by ion::text::BasicBuilder::BuildVertexData(), ion::text::OutlineBuilder::BuildVertexData(), ion::gfxutils::ShaderManager::CreateShaderProgram(), ion::text::DynamicFontImage::FindContainingImageDataIndex(), ion::text::DynamicFontImage::FindImageDataIndex(), ion::gfx::Renderer::Renderer(), and ion::gfx::UpdateStateTable().
|
inlineinherited |
|
inlineinherited |
Returns the total amount of GPU memory used by this Holder's resource.
Definition at line 78 of file resourceholder.h.
Definition at line 72 of file cubemaptexture.h.
Definition at line 75 of file cubemaptexture.h.
|
inlineinherited |
Definition at line 107 of file texture.h.
References ion::base::SharedPtr< T >::Get().
|
inlineinherited |
|
inlineinherited |
Returns/sets the label of this.
Definition at line 89 of file resourceholder.h.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
Return our allocator, or the default allocator if the instance was declared on the stack.
Definition at line 72 of file allocatable.h.
References allocator_, and ion::base::AllocationManager::GetNonNullAllocator().
|
inherited |
Returns the number of Notifiers that will be notified.
Definition at line 71 of file notifier.cc.
|
protectedinherited |
Returns the set of Notifiers that will be notified.
Definition at line 77 of file notifier.cc.
|
inlineinherited |
GetRefCount() is part of the interface necessary for SharedPtr.
Definition at line 34 of file shareable.h.
Referenced by ion::base::Notifier::RemoveReceiver().
|
inherited |
Returns the Resource at the given index and key, or NULL if no resource was previously set at that location.
Definition at line 122 of file resourceholder.cc.
|
inlineinherited |
Returns the number of resources that this holder holds.
Note that this is not necessarily the number of indices that have non-NULL resources. This can be used as a fast trivial check to see if the holder has any resources.
Definition at line 73 of file resourceholder.h.
|
inlineinherited |
Definition at line 92 of file texture.h.
References ion::base::SharedPtr< T >::Get().
|
inline |
Definition at line 86 of file cubemaptexture.h.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
Definition at line 69 of file cubemaptexture.h.
|
inlineinherited |
|
protectedinherited |
Notifies all contained Notifiers by calling their OnNotify().
Any receivers that have been destroyed will be removed from the vector of receivers.
Definition at line 81 of file notifier.cc.
References ion::base::SharedPtr< T >::Get().
|
inlineprotectedinherited |
Forwards OnChanged to all resources.
Definition at line 326 of file resourceholder.h.
|
inlineinherited |
Define the delete operator to use specialized functions dealing with an Allocator.
Definition at line 109 of file allocatable.h.
|
inlineinherited |
Windows requires these (or it issues C4291 warnings).
Definition at line 112 of file allocatable.h.
|
inlineinherited |
Definition at line 113 of file allocatable.h.
|
inlineinherited |
The placement delete operator does nothing, as usual.
Definition at line 118 of file allocatable.h.
|
inlineinherited |
The standard no-parameter new operator uses the default Allocator.
Definition at line 84 of file allocatable.h.
|
inlineinherited |
This overloaded version of the new operator uses the AllocationManager's default Allocator for the specified lifetime.
Definition at line 88 of file allocatable.h.
|
inlineinherited |
This overloaded version of the new operator takes the Allocator to use directly as a parameter.
If the Allocator pointer is NULL, this uses the default Allocator.
Definition at line 95 of file allocatable.h.
|
inlineinherited |
Special operator new for using placement new with Allocatables.
Definition at line 100 of file allocatable.h.
|
inlineinherited |
The placement new operator is defined conventionally.
Definition at line 105 of file allocatable.h.
|
inherited |
Removes a Notifier to be notified.
Does nothing if the receiver is NULL or not in the set of receivers.
Definition at line 38 of file notifier.cc.
References ion::base::Shareable::GetRefCount().
Referenced by ion::gfx::AttributeArray::~AttributeArray().
|
inlineinherited |
|
inline |
See comments in TextureBase::Face.
Definition at line 61 of file cubemaptexture.h.
References ion::port::ERROR, and LOG.
Sets this texture to be fully allocated and made immutable by OpenGL, in the sense that it cannot change size or its number of mipmap levels.
The actual image data of the texture is not immutable, and may be changed with SetSubImage() (see below). This is equivalent to using a GL TexStorage() function. The passed image specifies the dimensions of the base texture face and the format to use (any image data stored in image is ignored), while levels indicates the number of mipmap levels to allocate.
Definition at line 112 of file texture.cc.
References ion::port::ERROR, ion::base::SharedPtr< T >::Get(), and LOG.
|
inlineinherited |
Definition at line 90 of file resourceholder.h.
|
inlineinherited |
|
inlineinherited |
Enables/disables and sets parameters for texture multisampling.
If multisampling is enabled, then both mipmapping and sub images are disabled.
Definition at line 146 of file texture.h.
References LOG, and ion::port::WARNING.
|
inherited |
Sets the resource at the passed index and key.
The size of the internal vector is automatically managed so that it has the smallest possible size.
Definition at line 51 of file resourceholder.cc.
References DCHECK, DCHECK_EQ, ion::gfx::ResourceBase::GetKey(), and ion::gfx::ResourceBase::OnChanged().
|
inherited |
Sets/returns the Sampler to use for this. This is NULL by default.
Definition at line 104 of file texture.cc.
|
inline |
Definition at line 78 of file cubemaptexture.h.
|
inline |
Definition at line 82 of file cubemaptexture.h.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |