Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Unified Diff: command_buffer/client/cross/effect_helper.h

Issue 234002: More work in Command Buffers... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « command_buffer/client/cross/cmd_buffer_helper.h ('k') | command_buffer/client/cross/effect_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_buffer/client/cross/effect_helper.h
===================================================================
--- command_buffer/client/cross/effect_helper.h (revision 26885)
+++ command_buffer/client/cross/effect_helper.h (working copy)
@@ -50,7 +50,7 @@
public:
// A more usable version of effect_param::Desc
struct EffectParamDesc {
- ResourceID id; // The resource ID for the param.
+ ResourceId id; // The resource ID for the param.
String name; // The name of the param.
String semantic; // The semantic of the param.
effect_param::DataType data_type; // The data type of a param.
@@ -92,14 +92,14 @@
// This function will call Finish(), hence will block.
//
// Parameters:
- // effect_id: the ResourceID of the effect.
+ // effect_id: the ResourceId of the effect.
// descs: A pointer to a vector containing the returned descriptions.
// The pointed vector will be cleared.
// Returns:
// true if successful. Reasons for failure are:
// - invalid effect_id,
// - not enough memory in the shm_allocator_.
- bool CreateEffectParameters(ResourceID effect_id,
+ bool CreateEffectParameters(ResourceId effect_id,
std::vector<EffectParamDesc> *descs);
// Gets the strings for a desc. This will fill in the values for the name and
@@ -112,15 +112,15 @@
//
// Parameters:
// desc: a pointer to the description for a parameter. The id field should
- // be set to the ResourceID of the parameter.
+ // be set to the ResourceId of the parameter.
// Returns:
// true if successful. Reasons for failure are:
- // - invalid parameter ResourceID,
+ // - invalid parameter ResourceId,
// - not enough memory in the shm_allocator_.
bool GetParamStrings(EffectParamDesc *desc);
// Destroys all parameter resources referenced by the descriptions. The
- // ResourceID will be freed from the param_id_allocator.
+ // ResourceId will be freed from the param_id_allocator.
// Parameters:
// descs: the vector of descriptions containing the ResourceIDs of the
// parameters to destroy.
@@ -132,14 +132,14 @@
// This function will call Finish(), hence will block.
//
// Parameters:
- // effect_id: the ResourceID of the effect.
+ // effect_id: the ResourceId of the effect.
// descs: A pointer to a vector containing the returned descriptions.
// The pointed vector will be cleared.
// Returns:
// true if successful. Reasons for failure are:
// - invalid effect_id,
// - not enough memory in the shm_allocator_.
- bool GetEffectStreams(ResourceID effect_id,
+ bool GetEffectStreams(ResourceId effect_id,
std::vector<EffectStreamDesc> *descs);
private:
« no previous file with comments | « command_buffer/client/cross/cmd_buffer_helper.h ('k') | command_buffer/client/cross/effect_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698